如何使parted始终显示相同的单位
我在脚本中使用parted。因此,我需要分开才能始终使用相同的单位。否则我无法进行合理的计算。
在此示例中,parted 混合了 KB 和 GB:
pcsyn-038 user # parted -l
Model: ATA ST9250315AS (scsi)
Disk /dev/sda: 250GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Number Start End Size Type File system Flags
1 1049kB 21,5GB 21,5GB primary ext4
3 21,5GB 248GB 226GB primary ext4
2 248GB 250GB 2147MB primary linux-swap(v1)
这对输出没有任何影响:
parted /dev/sda unit MB
I use parted in a script. For that reason I need parted to always use the same unit. Otherwise I am not able to do reasonable calculations.
In this example parted mixes KB and GB:
pcsyn-038 user # parted -l
Model: ATA ST9250315AS (scsi)
Disk /dev/sda: 250GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Number Start End Size Type File system Flags
1 1049kB 21,5GB 21,5GB primary ext4
3 21,5GB 248GB 226GB primary ext4
2 248GB 250GB 2147MB primary linux-swap(v1)
This does not have any effect on the output:
parted /dev/sda unit MB
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
根据 parted(1),单位可以是以下之一:
例如:
According to parted(1), unit can be one of:
e.g:
我认为您不应该使用
parted
的-l
参数,而是使用print
子命令:当我这样做时,我会得到 <代码>MB。
I think you should not use the
-l
argument ofparted
but theprint
subcommand:When I do it this way I get all sizes in
MB
.fdisk
实用程序具有更加一致和精确的输出。它使用 /proc/partitions 来确定使用哪些分区。parted
更像是一个最终用户实用程序,因为它更易于使用。注意:通常每个块设备定义它自己的块大小。通过指定每个设备来获取有关每个设备的块数的更多信息。
你想计算什么?如果您需要测量可用磁盘空间,最好使用
du
< /a>.The
fdisk
utility has a much more consistent and precise output. It uses/proc/partitions
to determine what partitions are used.parted
is a more an end-user utility as it's easier to use.Note: generally each block-device defines it's own blocksize. Get more information on the number of blocks per device by specifing each device.
What do you want to calculate? If you need some measurement of free disk space, it's better to use
du
.