Hi,
probably this is going to be a very newbie question
I wondering why in
I am aware of "4K alignment" issue, but why not less (or 0)?
I mean:
Surely 20 is multiple of 4.
Why not starting at 32 blocks, for example?
Thank you very much
probably this is going to be a very newbie question

I wondering why in
gpart show
output I often see "40" as starting point:
Code:
# gpart show
=> 40 8388528 ada0 GPT (4.0G)
40 1024 1 freebsd-boot (512K)
1064 7965696 2 freebsd-ufs (3.8G)
7966760 419840 3 freebsd-swap (205M)
8386600 1968 - free - (984K)
I am aware of "4K alignment" issue, but why not less (or 0)?
I mean:
Code:
40 (blocks) x 512B (block's size) = 20480B = 20kB
Surely 20 is multiple of 4.
Why not starting at 32 blocks, for example?
Code:
32 (blocks) x 512B (block's size) = 16384B = 16kB
Thank you very much