fdisk: print much less cryptic partition table
authorDenys Vlasenko <vda.linux@googlemail.com>
Tue, 23 Aug 2016 14:13:33 +0000 (16:13 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Tue, 23 Aug 2016 14:13:33 +0000 (16:13 +0200)
commit607f2b404e992174d7c5956d11e8f35f78d2701f
tree60a7bb8d2a187348f055b60d8ee399cfe2e47aa4
parent6b76e2345490a1f65423b72580f84d09b3983ab6
fdisk: print much less cryptic partition table

Before:

   Device Boot      Start         End      Blocks  Id System
/dev/sdb1   *           1         998      255471+  6 FAT16

What are "blocks"? What is that "+"?
How big is this partition?
Is start/end shown came from LBA fields or CHS fields?
Why are we torturing the user??

After:

Device  Boot StartCHS    EndCHS        StartLBA     EndLBA    Sectors  Size Id Type
/dev/sdb1 *  0,1,1       996,15,32           32     510974     510943  249M  6 FAT16

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
util-linux/fdisk.c