Terme informatique

GPT Partition

GPT is a modern disk partitioning scheme based on GUID identifiers.

⌚ About 1 min read
View my favorites

Simple definition

GPT (GUID Partition Table) is a modern disk-partitioning scheme designed to replace the historical limitations of MBR.

Technical definition

GPT stores a primary header, an array of partition entries identified by GUIDs, and a backup copy near the end of the disk. CRC checks help detect some forms of metadata corruption.

What is it used for?

Manage modern and large-capacity disks and support UEFI booting while providing a more robust partition structure than MBR.

Practical example

A Windows computer booting in UEFI mode typically uses a GPT system disk with an EFI System Partition.

Common issues

  • UEFI/Legacy firmware mode does not match the disk layout
  • Damaged GPT metadata or cloned disks with duplicated identifiers
  • Poorly planned MBR/GPT conversion or incompatible partitions

How it works / role

When the disk is opened or the system boots, firmware and the operating system read the GPT header and partition entries. The backup copy and CRC values help verify metadata consistency, after which partitions are exposed according to their type and identifier.

Key takeaway: Exact behavior can vary by version, product, and architecture; always validate on the environment actually deployed.

♡ 0