Fdisk 新磁盘大小

Fdisk 新磁盘大小

我正在使用 ubuntu 20.04,我想创建大小正好为 500 MB 的新分区磁盘。但是,fdisk 将其调整为 512MiB,有什么方法可以创建大小正好为 500MB 的磁盘吗?

fdisk 输出

ric@Eric:~/Downloads$ sudo fdisk /dev/sda

Welcome to fdisk (util-linux 2.34).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.


Command (m for help): n
All primary partitions are in use.
Adding logical partition 7
First sector (2359260-10288994, default 2359260): 2359260
Last sector, +/-sectors or +/-size{K,M,G,T,P} (2359260-10288994, default 10288994): +500M 

Created a new partition 7 of type 'Linux' and of size 512 MiB.

Command (m for help): p
Disk /dev/sda: 931.53 GiB, 1000204886016 bytes, 1953525168 sectors
Disk model: Portable SSD T5 
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 33553920 bytes
Disklabel type: dos
Disk identifier: 0xd13fa933

Device     Boot      Start        End   Sectors   Size Id Type
/dev/sda1  *    1952501760 1953523711   1021952   499M ef EFI (FAT-12/16/32)
/dev/sda2       1950453760 1952501759   2048000  1000M 83 Linux
/dev/sda3       1704693760 1950453759 245760000 117.2G 83 Linux
/dev/sda4            65536   10288994  10223459   4.9G  5 Extended
/dev/sda5           131071    1179629   1048559   512M 83 Linux
/dev/sda6          1245165    2293724   1048560   512M 83 Linux
/dev/sda7          2359260    3407819   1048560   512M 83 Linux

Partition table entries are not in disk order.

Command (m for help): 

答案1

这可以用数学来解决!扇区大小为 512 字节,这意味着您需要一百万个扇区才能达到 500MB。

First sector (2359260-10288994, default 2359260): 2359260
Last sector, +/-sectors or +/-size{K,M,G,T,P} (2359260-10288994, default 10288994): 3359260

不过,要做好准备不是如果满足以下条件,则恰好为 500MB:

  • SSD 上的存储控制器不喜欢该数字
  • 主板上的存储控制器不喜欢该数字

多年来,人们对如何在存储设备上写入和组织数据进行了大量数学研究,但有些情况对于设备的长期使用来说并不理想。

相关内容