Partitions in MBR

Discussions on more advanced topics such as monolithic vs micro-kernels, transactional memory models, and paging vs segmentation should go here. Use this forum to expand and improve the wiki!
Post Reply
randoll
Posts: 7
Joined: Thu Feb 13, 2014 5:58 am

Partitions in MBR

Post by randoll »

I am little bit confused why does MBR has this table marked as reserved.
Is it ever used by firmware like GPT in UEFI?
Or is it only used as standardized signal in between installers?
User avatar
iansjack
Member
Member
Posts: 4685
Joined: Sat Mar 31, 2012 3:07 am
Location: Chichester, UK

Re: Partitions in MBR

Post by iansjack »

Is it possible to explain what you are talking about? Which table?
User avatar
Combuster
Member
Member
Posts: 9301
Joined: Wed Oct 18, 2006 3:45 am
Libera.chat IRC: [com]buster
Location: On the balcony, where I can actually keep 1½m distance
Contact:

Re: Partitions in MBR

Post by Combuster »

Since "this" could only possibly refer to partition tables... (And yes, I agree that the formulation is horrible)

The partition table in the MBR is not technically "reserved space". The MBR is simply the first sector of a storage medium. It can have a partition table but it's not mandatory. Look at floppies which rarely have a partition table, SD cards where there's practically always one filesystem and occasionally without the single-entry partition table, or even CDs which has an entire replacement system for partition tables (just like GPT is a replacement).

EFI only needs a GPT - located in the second sector. The parition table isn't necessary, but it might exist to have both EFI and legacy OSes on the same machine - or even to simply prevent legacy stuff from messing up the disk by making it look like everything is in use.
"Certainly avoid yourself. He is a newbie and might not realize it. You'll hate his code deeply a few years down the road." - Sortie
[ My OS ] [ VDisk/SFS ]
User avatar
iansjack
Member
Member
Posts: 4685
Joined: Sat Mar 31, 2012 3:07 am
Location: Chichester, UK

Re: Partitions in MBR

Post by iansjack »

I thought the reason for the partition table in an MBR was too obvious to need questioning. (How else is an operating system to know where to find the partitions on an MBR formatted disk?) Perhaps I am reading more into the question than is there.
randoll
Posts: 7
Joined: Thu Feb 13, 2014 5:58 am

Re: Partitions in MBR

Post by randoll »

Why is there partition tables in MBR mostly reffered as standard?
From what does it come from?
User avatar
Combuster
Member
Member
Posts: 9301
Joined: Wed Oct 18, 2006 3:45 am
Libera.chat IRC: [com]buster
Location: On the balcony, where I can actually keep 1½m distance
Contact:

Re: Partitions in MBR

Post by Combuster »

"Certainly avoid yourself. He is a newbie and might not realize it. You'll hate his code deeply a few years down the road." - Sortie
[ My OS ] [ VDisk/SFS ]
User avatar
Brendan
Member
Member
Posts: 8561
Joined: Sat Jan 15, 2005 12:00 am
Location: At his keyboard!
Contact:

Re: Partitions in MBR

Post by Brendan »

Hi,
randoll wrote:I am little bit confused why does MBR has this table marked as reserved.
Is it ever used by firmware like GPT in UEFI?
The MBR's partition table isn't normally used by firmware. If the firmware is UEFI it uses GPT, and if the firmware is BIOS it normally doesn't know or care about partitions.
randoll wrote:Why is there partition tables in MBR mostly reffered as standard?
Some standards are "de facto standards". The MBR partitioning scheme is what Microsoft invented for their OSs, and everyone else on 80x86 ended up either adopting it or tolerating it to avoid compatibility problems. For an example, BSD had its own scheme ("slices") before Microsoft decided to use the MBR partitioning; and to avoid compatibility problems BSD on 80x86 ended up having "partition of slices" instead of just "slices".
randoll wrote:From what does it come from?
The partition table itself comes from tools that create/manage partitions. This could be a stand-alone tool (e.g. "fdisk" utility) or an OS installer.


Cheers,

Brendan
For all things; perfection is, and will always remain, impossible to achieve in practice. However; by striving for perfection we create things that are as perfect as practically possible. Let the pursuit of perfection be our guide.
Post Reply