Aligning MBR for ZFS boot help

Peter Maloney peter.maloney at brockmann-consult.de
Thu Mar 14 11:53:27 UTC 2013


On 2013-03-14 12:47, Peter Maloney wrote:
> On 2013-03-14 10:41, Bruce Evans wrote:
>> On Wed, 13 Mar 2013, Cody Ritts wrote:
>>
>>> So, by setting those CHS values I am:
>>>  making the partition table more compatible with other operating
>>> systems and BIOSes?
>>>  and giving some utilities the CHS stuff they need to function right?
>> It's not completely clear that S=32 H=64 is portable, but it is what most
>> old SCSI BIOSes used.
>>
>> Also, if the disk already has some partitions with a certain geometry,
>> use
>> the same geometry for other partitions and don't use fdisk's defaults if
>> they differ.
>>
>> Bruce
> Oh man... I thought yeah that -a 1 or -a 2048 should work, but it
> doesn't. And then I thought I'd be extra crafty and use dd to directly
> write the partition table myself and send that as a solution to you
> guys, but even that fails!
>
>
> Here's writing a 63 alignment mbr to the disk, just to prove dd can do this:
>
> # gdd if=mbr.img of=/dev/md10 bs=512 count=1
> 1+0 records in
> 1+0 records out
> 512 bytes (512 B) copied, 16.8709 s, 0.0 kB/s
>
> # gpart show md10
> =>     63  4194241  md10  MBR  (2.0G)
>        63    40950     1  freebsd  (20M)
>     41013  4153291        - free -  (2G)
>
> Here's changing the start sector on the first partition to 2048 ;)
> Writing to the device works with bs=512, but not bs=1, so we use a file
> and bs=1 to do our edits, and then bs=512 to the disk.
>
> # gdd if=<(echo -ne "\x00\x08" ) of=mbr.img bs=1 seek=454
> 2+0 records in
> 2+0 records out
> 2 bytes (2 B) copied, 0.000112023 s, 17.9 kB/s
>
> Here's writing the new 2048 aligned mbr to the disk:
>
> # gdd if=mbr.img of=/dev/md10 bs=1 count=1
> gdd: writing `/dev/md10': *Invalid argument*
> 1+0 records in
> 0+0 records out
> 0 bytes (0 B) copied, 21.0247 s, 0.0 kB/s
>
> :O
> _________________________________________


Oh, and I almost forgot the most important part... the solution!

The solution is to align to 129024 sectors instead, which fits the needs
of modern 512/1024/2048 alignment, and also the crazy old thing.

# gpart add -t freebsd -a 129024 -s 1M md10
md10s1 added
# gpart add -t freebsd -a 129024 -s 1511M md10
md10s2 added
# gpart show md10
=>     63  4194241  md10  MBR  (2.0G)
       63   128961        - free -  (63M)
   129024     2016     1  freebsd  (1M)
   131040   127008        - free -  (62M)
   258048  2967552     2  freebsd  (1.4G)
  3225600   968704        - free -  (473M)

Above -s numbers are basically random for testing. So now let's check
that they are indeed aligned, with the modulus in bc. (Note that
strangely, % is only modulus if scale=0 in bc)

# bc
bc 1.06
Copyright 1991-1994, 1997, 1998, 2000 Free Software Foundation, Inc.
This is free software with ABSOLUTELY NO WARRANTY.
For details type `warranty'.
129024%2048
0
258048%2048
0



More information about the freebsd-fs mailing list