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
According to parted(1), unit can be one of:
e.g:
$ for hdd in /dev/sd? ; do
parted -m $hdd unit MB print; done |\
column -s: -t
BYT;
/dev/sda 500108MB scsi 512 512 msdos ATA WDC WD5002ABYS-0;
2 0.03MB 60003MB 60003MB reiserfs ;
3 60003MB 60250MB 247MB ;
4 60250MB 499858MB 439608MB ;
5 60250MB 75253MB 15003MB ext3 ;
6 75253MB 200253MB 125000MB ext3 ;
7 200253MB 499858MB 299606MB ;
1 499858MB 500105MB 247MB ext2 boot;
BYT;
/dev/sdb 500108MB scsi 512 512 msdos ATA ST3500418AS;
2 0.03MB 60003MB 60003MB reiserfs ;
3 60003MB 60250MB 247MB ext3 ;
4 60250MB 499858MB 439608MB ;
5 60250MB 75253MB 15003MB ;
6 75253MB 200253MB 125000MB ;
7 200253MB 499858MB 299606MB ;
1 499858MB 500105MB 247MB ext2 boot;
I think you should not use the -l
argument of parted
but the print
subcommand:
parted /dev/sda unit MB print
When I do it this way I get all sizes in MB
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With