0

If a disk uses GPT partitioning method, is its first sector still called MBR? What is a generic name for the sector which stores the partition table of a disk? Thanks.

9
  • Is this on-topic for U&L?
    – Jeff Schaller
    Commented Feb 20, 2019 at 17:41
  • Sure. Just spent a pleasant second with a defender of bureaucracy
    – Tim
    Commented Feb 20, 2019 at 17:49
  • 4
    I'm voting to close this question as off-topic because it's "not directly related to Unix or Linux" as per the U&L tour for on/off-topic guidelines.
    – Jeff Schaller
    Commented Feb 20, 2019 at 17:59
  • Apart from one quite limited case of only one partitioning scheme, that studiously ignores supplementary information that has been fairly common in that scheme since the early 1990s, no partition table is stored in a single sector. This question is based upon a fallacious premise.
    – JdeBP
    Commented Feb 20, 2019 at 18:34
  • @JdeBP Thanks, but what do you mean by "no partition table is stored in a single sector"?
    – Tim
    Commented Feb 20, 2019 at 18:37

1 Answer 1

2

A GPT partitioned disk still has a legacy MBR that is typically used to store a "Protective MBR", containing an old-fashioned partition table defining a single partition of type EE spanning the whole disk (up to 2 TB). The purpose of this entry is to tell old tools that don't understand GPT that there is no free space on the disk, hopefully preventing the creation of legacy partitions on the disk. The MBR also contains boot code, if the firmware confirms to the legacy BIOS interface instead of UEFI.

After the MBR (Linear Block Address 1) comes the Primary GPT Header, a sector containing miscellaneous data, for example the LBA of the start of the real GPT partition table (usually LBA 2).

The GPT partition partition table spans several sectors, typically 32, but can be larger or smaller; the size is defined in the GPT Header.

3
  • Thanks. "The MBR also contains boot code, if the firmware confirms to the legacy BIOS interface instead of UEFI." If the firmware is UEFI, what does the MBR contain, and where is boot code stored?
    – Tim
    Commented Feb 20, 2019 at 20:57
  • If the firmwares is UEFI then, apart from the Protective MBR, it doesn't matter what the MBR contains. In this case, the firmware is able to read files on the special EFI System Partition, and can execute these files. Commented Feb 21, 2019 at 5:25
  • Is the sector(s) which stores the partition table of a disk called disk label? Also see unix.stackexchange.com/questions/503241/…
    – Tim
    Commented Feb 27, 2019 at 1:51

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .