Penguin
Annotated edit history of GPT version 8, including all changes. View license author blame.
Rev Author # Line
1 DanielLawson 1 [Acronym] for __G__UID __P__artition __T__able
2
5 IanMcDonald 3 [GPT] was introduced for iA64 systems, to get around a ''fixed 32 bit issue'' (2 to the power of 32 is 4 billion times a 512 byte block equals 2 Terabytes) in the [PC]-[BIOS] [Partition] table. [Partition]s larger than 2 TB require using a [GPT] disklabel, which differs from the [PC]-[BIOS] [Partition] table in a number of ways:
1 DanielLawson 4
4 AristotlePagaltzis 5 * Is easily extensible.
6 * Can contain up to 128 primary partitions, as opposed to 4, so there's no need for extended partitions.
7 * Allows [Partition]s larger than 2 TB.
8 * Identifies [Partition]s with a [GUID] so you can reference that [Partition] even if disks are moved around.
9 * Identifies [Partition] type with a [GUID], thus avoiding the type conflicts that plague the [PC]-[BIOS] [Partition] table format.
6 MeToo 10 * Provides a 36 character [UTF]-16 partition label to identify [Partition]s.
2 PerryLorier 11 * Has a "fake" [MBR] for backwards compatibility.
4 AristotlePagaltzis 12 * Includes a [CRC]32 to detect corrupt [Partition] tables.
13 * Stores a backup [Partition] table at the end of the disk.
2 PerryLorier 14
8 AlexanderYuan 15 Most partitioning tools under [Linux] will fail to do anything sensible with a > 2 TB [Partition]. As of this writing (June 22, 2005), parted(8) is the only one that understands them and will let you set the [GPT] label on the disk.
2 PerryLorier 16
7 IanMcDonald 17 There is a lot of information stating that you cannot boot off a [GPT] enabled device. Most of the claims imply that the fault is with [LILO] or [GRUB] not understanding [GPT] devices. We've not tested this, but [GPT] and traditional [MBR]s will coexist.
1 DanielLawson 18
4 AristotlePagaltzis 19 See also:
20 * [Disk Sectors on GPT Disks | http://www.microsoft.com/resources/documentation/Windows/XP/all/reskit/en-us/prkd_tro_zkfe.asp] from the [MS] Knowledge Base
6 MeToo 21 * [GPT article | http://en.wikipedia.org/wiki/GUID_Partition_Table] on Wikipedia