I've been reading the parted man page but can't seem to find any documentation on valid parameters. I'm trying to partition a USB CompactFlash with specific partitions sizes (regardless of CF size). But I'd like to make sure that my alignment is perfectly correct and optimal.
For example, when I use the following commands:
parted -s -a optimal $DEV mkpart primary ext3 1 1600
parted -s -a optimal $DEV mkpart primary ext3 1600 3200
parted -s -a optimal $DEV mkpart primary ext3 3200 3600
It's not clear if the first partition start should be 1 or 0? The only hint that I get that it should start with a 1 rather than a zero is when I run:
parted /dev/sdc align-check optimal 1
Which tells me it is aligned when starting with 1 and not aligned when starting with 0. But when I start with a 1 and I do a 'print', the start is at 1049kB... is this normal? When I dump the print partitions that were created by other tools, I see that they start at 32kB. If I use a start of 0, it prints a start of 512kB. Which is correct, I don't know!
Additionally, I've seen many examples all over the web of people using their start value for the second and third partitions as their ending value of the partition preceding it (ie: 1600 and 3200 values). Are we suppose to have an overlap or increment by 1? The man pages say nothing about this. And I've seen some web pages where they say its an error for the start to be of the same value of the last end.
When I use the '-a optimal', it does not seem to even affect my partition. Not using the alignment flag seems to produce the same result. What purpose is this for? Is there something I'm missing?
I really wish parted would be a lot more intelligent and not require a start, but rather could deduce it itself. Actually many people seem to need this exact feature, so I'm not the only odd ball with this need. Hopefully some geek out there will see this need and actually add it as a feature.
Note that I'm using parted in an automated build script, which is why I use the '-s' flag.
If anyone can enlighten me on this I would greatly appreciate it... thanks in advance!