Fact-checked by Grok 2 weeks ago

Partition type

In , a partition type is an identifier encoded in a disk's partition table to denote the intended format, , or usage of a specific , enabling operating systems and bootloaders to recognize and handle it appropriately. These types are essential for organizing storage on hard drives, solid-state drives, and other block devices, allowing multiple logical divisions on a single physical disk while maintaining compatibility across systems. The two dominant partitioning schemes differ significantly in how they represent partition types. The older Master Boot Record (MBR) scheme, introduced with early PC BIOS systems, limits disks to a maximum of four primary partitions (or three primary plus one extended partition containing logical ones) and uses a single-byte hexadecimal code (ranging from 0x00 to 0xFF) in each partition entry to specify the type. Common MBR types include 0x07 for Windows NTFS, 0x0B for FAT32, 0x83 for Linux native partitions (such as ext2, ext3, or ext4), and 0x82 for Linux swap space, with the scheme supporting disks up to 2 TiB in size using 512-byte sectors. In contrast, the GUID Partition Table (GPT), standardized as part of the UEFI firmware specification, replaces the byte code with a 128-bit Globally Unique Identifier (GUID) for each partition type, supporting up to 128 partitions by default (expandable) and disk sizes up to 8 ZiB. Standard GPT types include the GUID C12A7328-F81F-11D2-BA4B-00A0C93EC93B for the EFI System Partition (used for booting UEFI systems) and DE94BBA4-06D1-4D40-A16A-BFD50179D6AC for Microsoft Reserved partitions. GPT also incorporates redundancy with primary and backup partition tables, enhancing data integrity against corruption. Partition types play a critical role in system configuration, , and ; for instance, mismatched types can prevent operating systems from mounting or from a , and tools like fdisk or gdisk are used to view and modify them. While MBR remains in use for legacy compatibility, has become the preferred standard for modern systems due to its scalability and support for advanced features like secure boot.

Fundamentals

Definition and Role in Disk Management

A partition type is a numeric or alphanumeric code assigned to a disk to indicate its intended use, such as hosting an operating system, a specific filesystem, or diagnostic tools. These codes, often represented in format, serve as identifiers that inform software about the partition's purpose and compatible handling methods. In disk management, partition types play a crucial role by enabling bootloaders, operating systems, and partitioning utilities to recognize and interact with partitions correctly. For instance, they guide the mounting of filesystems, allocation of resources, and execution of boot processes, ensuring that tools apply the appropriate protocols without attempting incompatible operations. This recognition is facilitated through entries in partition tables, where the type code is recorded alongside other partition metadata. The importance of partition types lies in maintaining compatibility across diverse hardware and software environments, where incorrect assignment can result in boot failures, inaccessible data, or unintended during read/write operations. By accurately signaling the partition's role, these types prevent misconfigurations that could otherwise lead to system instability or loss of access to critical storage areas. As a basic example, the code 0x83 designates a standard filesystem , allowing -based systems to identify and it natively for .

Partition Tables and Type Identification

tables serve as essential structures on devices, typically beginning at logical (LBA) 0, that organize the disk into logical s by specifying their locations, sizes, and associated . This includes a type identifier for each , which indicates its purpose, such as hosting an operating system or serving as a data container, enabling the operating system and tools to interpret and manage the appropriately. These tables ensure that the disk's capacity is divided efficiently while maintaining compatibility across different hardware and software environments. The (MBR) represents the traditional table format, occupying a fixed 512-byte sector at the disk's start. It comprises 446 bytes of executable boot code, a 64-byte table that accommodates up to four primary entries, and a 2-byte boot signature (0xAA55) for validation. Each 16-byte entry within the table includes fields for status, starting and ending heads/sectors/cylinders (legacy addressing), sector counts, and crucially, a 1-byte field at offset 0x04 that encodes the type. This compact structure supports basic but limits addressable storage to 2 tebibytes due to 32-bit sector addressing. In contrast, the GUID Partition Table (GPT), introduced as part of the Unified Extensible Firmware Interface (UEFI) standard, employs a more robust and scalable design to address MBR's limitations. GPT begins with a protective MBR at LBA 0, which mimics an MBR entry to shield the table from legacy tools, followed by the primary GPT header at LBA 1. This header, at least 92 bytes in size, includes fields like the disk GUID, pointers to partition entries, and checksums for integrity. The partition entries form an array (typically starting at LBA 2), with each 128-byte entry featuring a 128-bit PartitionTypeGUID field to uniquely specify the partition's role, alongside attributes, unique GUIDs, and LBA ranges. A redundant backup header and entry array at the disk's end enhance data reliability against corruption. Partition type identification occurs through disk management utilities that parse these tables to extract and interpret the type fields. For instance, the utility reads the MBR from sector 0 or the header from LBA 1, then decodes the respective type indicators—1-byte values for MBR or 128-bit GUIDs for —to list, classify, and operate on partitions during tasks like formatting, resizing, or mounting filesystems. Similarly, gdisk specializes in by directly accessing the header and entry array to display types and facilitate edits. These tools ensure that the type metadata guides subsequent actions, such as selecting appropriate filesystem drivers. Compatibility between partition tables and firmware modes is critical for booting and system operation. Legacy BIOS firmware, common in older x86 systems, natively processes MBR tables and relies on the 1-byte type codes to locate bootable partitions during the process. Modern UEFI firmware, however, is optimized for GPT, using the GUID-based types to identify and load bootloaders from specific partitions, such as the , while providing enhanced security features like Secure Boot. UEFI systems can enable Compatibility Support Module () to emulate legacy BIOS behavior for MBR disks, but direct GPT support in UEFI mode is preferred for larger disks and improved robustness.

Historical Evolution

Master Boot Record (MBR) System

The (MBR) partitioning system originated in 1983 alongside PC DOS 2.0, establishing the initial standardized method for dividing hard disk drives into partitions on IBM PC-compatible computers. This scheme quickly became the for early personal computing, enabling the organization of storage space for operating systems like and facilitating boot processes through firmware. Its design reflected the hardware constraints of the era, prioritizing simplicity and compatibility with 512-byte sectors on fixed disks. At its core, the MBR occupies the first sector (sector 0) of a disk, comprising 446 bytes of boot code, followed by a 64-byte partition table spanning bytes 446 to 509, and ending with a 2-byte boot signature (0x55AA). The partition table consists of up to four 16-byte entries, where the fourth byte of each entry defines the partition type ID—a hexadecimal value indicating the intended use or filesystem, such as 0x00 for unused space or 0x05 for an extended partition that chains to additional logical partitions. This structure allows the boot code to locate and load the volume boot record from the active primary partition during system startup. Despite its foundational role, the MBR system imposes significant constraints, limiting disks to four primary partitions (or three primaries plus one extended partition containing logical ones) and capping addressable storage at 2 due to reliance on 32-bit (LBA). These limitations stem from the original (cylinder-head-sector) addressing scheme's evolution to LBA, which could not scale beyond 2^32 sectors of 512 bytes without modifications incompatible with legacy hardware. Early MBR partition types centered on filesystems, with 0x01 designating FAT12 or volumes suitable for small disks, and 0x06 for larger partitions exceeding 32 MB. These codes, introduced in the era, evolved through subsequent Windows releases, which standardized 0x07 for and retained variants for compatibility, while Linux adoption introduced codes like 0x83 for / filesystems within the same MBR framework. This incremental expansion supported cross-platform use but highlighted the scheme's rigidity compared to emerging alternatives. Since the widespread adoption of the GUID Partition Table (GPT) around 2010, coinciding with UEFI firmware in Windows 7 and later, the MBR has been progressively deprecated for new systems due to its scalability issues. Nonetheless, as of 2025, MBR persists in legacy BIOS-based environments, embedded devices, and older installations where compatibility with pre-UEFI hardware remains essential.

GUID Partition Table (GPT) Development

The GUID Partition Table (GPT) was introduced as part of the Extensible Firmware Interface (EFI) specification developed by Intel in the early 2000s, specifically for the Itanium (IA-64) platform to address the limitations of the Master Boot Record (MBR) system, including its 2 TiB disk size cap due to 32-bit logical block addressing and restriction to four primary partitions without extended structures. It was subsequently incorporated into the Unified Extensible Firmware Interface (UEFI) specification, version 2.0, first released on January 31, 2006, by the UEFI Forum (formed in 2005) to extend and unify the EFI across platforms. By introducing a more scalable and robust partitioning scheme, GPT enabled support for modern large-capacity storage devices and simplified partition management in UEFI environments. GPT's structure features a primary header located at logical block address (LBA) 1 and a backup header at the disk's last LBA, with the partition entry array following the primary header starting at LBA 2. The standard layout reserves space for 128 partition entries, each 128 bytes long, allowing up to 128 partitions by default, though this can be extended by increasing the entry array size. Each partition is identified by a 128-bit (UUID), known as a GUID, which specifies its type; for instance, the GUID EBD0A0A2-B9E5-4433-87C0-68B6B72699C7 denotes a . Key advantages of GPT include its use of 64-bit LBAs, supporting disk sizes up to 8 ZiB (9.44 zettabytes) with 512-byte sectors or 64 ZiB (75.5 zettabytes) with 4,096-byte sectors, far exceeding MBR's constraints. It incorporates CRC32 checksums in both headers and partition entries to detect corruption and ensure , with the backup structures allowing recovery if the primary ones fail. Additionally, GPT supports hybrid MBR configurations at LBA 0, enabling compatibility with legacy booting on GPT-formatted disks while protecting against accidental overwriting. Adoption of accelerated with the release of in 2012, which mandated for UEFI-based installations to leverage Secure Boot and larger drives. macOS has utilized as the default partitioning scheme since the transition to processors in 2006, aligning with its EFI implementation that evolved into support. By the , became the standard for booting across major operating systems, driven by the ubiquity of firmware in consumer and . As of 2025, GPT dominates partitioning on new hardware, including SSDs and HDDs exceeding 2 TiB, due to its alignment with and support for advanced features like NVMe storage. Tools such as Parted facilitate non-destructive conversions from MBR to , preserving data while enabling upgrades to systems.

Standard Partition Types

Operating System-Specific Types

Operating system-specific partition types are predefined identifiers in both (MBR) and (GPT) schemes that signal to bootloaders and operating systems the intended use of a partition for installation, booting, or primary storage. These types ensure compatibility during the boot process, where the firmware or bootloader scans for recognizable identifiers to load the appropriate OS loader or . For instance, in MBR, the type is a single byte (e.g., 0x07), while in GPT, it is a 128-bit GUID that provides more granular identification. Microsoft Windows primarily uses the filesystem for its system s, identified by MBR type 0x07, which denotes an installable filesystem compatible with and later versions. This type allows the Windows to recognize and mount the during boot, supporting up to 2 TB in MBR limits. In GPT configurations, the (ESP) uses the GUID C12A7328-F81F-11D2-BA4B-00A0C93EC93B and is formatted as FAT32 to store boot files for , enabling secure boot and compatibility with drives larger than 2 TB. Additionally, the (MSR) employs the GUID E3C9E316-0B5C-4DB8-817D-F92DF00215AE, a small unformatted space required on every disk for future use by the OS, typically 16 MB in size, which the automatically creates to maintain alignment. Linux distributions commonly designate MBR type 0x83 for native filesystems such as , , or , indicating a primary suitable for the filesystem or boot files, which the and bootloaders like can directly. This type triggers to probe for a and initramfs during the sequence, supporting legacy booting on disks up to 2 TB. For , the Linux filesystem GUID 0FC63DAF-8483-4772-8E79-3D69D8477DE4 is used for general-purpose data partitions, allowing the bootloader to identify and access or similar filesystems for loading the OS, with recognizing this GUID to locate images and initiate the process on systems. 's configuration scans partitions with these types to generate boot entries, ensuring seamless multi-boot support. macOS employs MBR type 0xAF for Apple HFS or HFS+ partitions, marking areas intended for the macOS system volume, which the bootloader uses to locate boot files and the on setups. This type ensures with MBR/GPT disks common in Intel-based Macs. In GPT, the Apple HFS+ GUID 48465300-0000-11AA-AA11-00306543ECAC identifies partitions formatted with HFS+. For APFS, the successor filesystem introduced in (10.13) in 2017, the GUID is 7C3457EF-0000-11AA-AA11-00306543ECAC, enabling the EFI bootloader to mount the volume and load macOS during UEFI boot, with the partition typically serving as the root for the entire OS installation. Other operating systems include , which uses MBR type 0xA5 for its UFS filesystem partitions, signaling to the FreeBSD bootloader the presence of bootable slices containing the kernel and loader code for BIOS-based systems. The related type 0xA6 is for compatibility in multi-OS environments. For GPT, utilizes the GUID 516E7CB4-6ECF-11D6-8FF8-00022D09712B to denote UFS or partitions, allowing the loader to recognize and boot from firmware by accessing the designated root filesystem. Solaris (now ) designates MBR type 0xBF for its system partitions, an updated identifier from the earlier 0x82, used to mark areas for UFS or filesystems that the Solaris bootloader can mount during x86 boot, supporting installations on MBR disks with up to four primary partitions. This type ensures the GRUB-like or direct loading identifies the Solaris for initialization. Solaris also supports , using GUID 6A85CF4D-1DD2-11B2-99A6-080020736631 for the root partition.

Filesystem and Utility Types

Partition types for filesystems specify the format of on a disk , allowing operating systems to detect and the appropriate filesystem for access. These types are essential for and , as they guide tools like or gdisk in identifying partition contents without probing the actual data. In the (MBR) scheme, types are represented by a single byte, providing a simple but limited classification. Conversely, the (GPT) employs 128-bit globally unique identifiers (GUIDs) for greater specificity and , as defined in the specification. Common filesystem types include the FAT family, widely used for compatibility across devices; NTFS and exFAT for Windows environments; and ext4 and Btrfs for Unix-like systems. The following table summarizes representative codes for these filesystems in both MBR and GPT formats:
Filesystem FamilySpecific VariantMBR Type CodeGPT GUID
FATFAT120x01EBD0A0A2-B9E5-4433-87C0-68B6B72699C7 (Microsoft basic data)
FATFAT320x0BEBD0A0A2-B9E5-4433-87C0-68B6B72699C7 (Microsoft basic data)
NTFS/exFATNTFS0x07EBD0A0A2-B9E5-4433-87C0-68B6B72699C7 (Microsoft basic data)
NTFS/exFATexFAT0x07EBD0A0A2-B9E5-4433-87C0-68B6B72699C7 (Microsoft basic data)
Unix-likeext40x830FC63DAF-8483-4772-8E79-3D69D8477DE4 (Linux filesystem)
Unix-likeBtrfs0x8391280000-11A3-4D07-807D-A1F14AB9E9A5 (Btrfs)
The data GUID serves as a generic container for various Windows-compatible filesystems like , , and in , mapping to legacy MBR codes for . For systems, the 0x83 MBR code broadly indicates a Linux-native filesystem, while GUIDs provide finer distinction; , as an extent-based journaling system, inherits the general filesystem GUID, emphasizing reliability for large volumes up to 1 exabyte. , a filesystem supporting snapshots and multi-device pooling, uses its dedicated GUID to enable advanced features like checks via checksums. Utility partition types support diagnostic and maintenance functions rather than general . In MBR, type 0x00 denotes an empty or unused , reserving space without assigning a filesystem and allowing future allocation. The 0xEE type appears in the protective MBR of GPT disks, creating a single entry spanning the entire disk to shield the GPT structure from legacy MBR-based tools that might otherwise misinterpret or overwrite it. Additionally, type 0xDE is employed for Dell diagnostics partitions, which contain pre-installed tools for hardware testing and recovery on systems. swap partitions, used for extension, are identified by MBR type 0x82 or GPT GUID 0657FD6D-A4AB-43C4-84E5-0933C84B4F4F, allowing the to activate swap space for improved performance under memory pressure. These type codes promote cross-platform filesystem mounting by signaling compatibility; for instance, kernels probe partitions with type 0x07 to apply drivers, ensuring seamless access to Windows-formatted storage. This identification mechanism reduces errors in multi-OS environments, though actual mounting depends on driver support within the host .

Specialized and Non-Standard Types

Vendor and Hardware-Specific Types

Vendor-specific partition types are proprietary identifiers used by hardware manufacturers to designate partitions for specialized functions, such as , utilities, or device-specific , often integrating closely with or software ecosystems. These types enhance hardware-software within the vendor's platform but can introduce challenges when migrating data across different s. Microsoft employs the GUID E3C9E316-0B5C-4DB8-817D-F92DF00215AE for the (MSR) in layouts, a small space typically 128 in size for drives 16 and larger (or 32 for smaller drives, and 16 on 4K native sector drives) located after the to ensure proper alignment of subsequent s with the disk's physical sector boundaries, facilitating optimal performance on advanced drive technologies like SSDs. This remains unformatted and inaccessible to users, serving exclusively for internal Windows management tasks. Apple utilizes the GPT partition type GUID 7C34529D-A847-11AA-AAAF-79103C1BD500 for partitions hosting the Apple File System (APFS), which supports modern features like snapshots, encryption, and space sharing across multiple volumes within a single container. For disks formatted with GPT, Apple also incorporates the MBR partition type 0xEE as a protective entry to signal legacy MBR-aware tools that the disk employs GPT, preventing accidental overwrites by older partitioning utilities. Original equipment manufacturers (OEMs) often define custom partition types to support proprietary utilities and recovery mechanisms. For instance, assigns the MBR partition type 0xDE to its OEM utility partition, a FAT-formatted space containing diagnostic and maintenance tools accessible via boot menus like F12. (HP) implements custom recovery partitions, typically NTFS-formatted with hidden attributes, dedicated to storing factory restore images and drivers, ensuring quick system reinstatement without external media. On Android devices, a vendor-specific GUID designates the Encrypted File System (EFS) partition, which holds critical device identifiers such as IMEI, addresses, and calibration data essential for hardware functionality. In and storage configurations, the MBR partition type 0xEE serves as the EFI GPT protective partition to safeguard GPT-structured volumes from misinterpretation by legacy systems, spanning the entire disk to indicate its usage. Intel's Matrix Storage Technology, a software implementation, similarly leverages 0xEE in MBR setups for protective purposes on GPT-enabled arrays, allowing seamless integration with boot environments while maintaining compatibility with older hardware. These vendor-specific types, while optimized for proprietary ecosystems, reduce portability across platforms; tools from non-vendor sources may ignore or misinterpret unknown , potentially leading to overlooked partitions during imaging or resizing operations and risking .

Local and Experimental Types

In the (MBR) partitioning scheme, partition types from 0x80 to 0xBF are designated for or experimental purposes, enabling users to create custom for non-standard uses such as diagnostic tools or temporary storage without conflicting with standard types. For instance, within the narrower 0x80-0x8F range, developers have historically assigned values for user-defined partitions, like early experimental setups for system recovery or testing. In the (GPT) system, arbitrary Partition Type GUIDs can be defined by generating unique 128-bit , offering greater flexibility for custom implementations compared to MBR's limited byte-based codes. Experimental partition types have appeared in historical contexts, such as early distributions using non-standard MBR codes during development phases before standardization. In modern virtualization environments, tools like support the creation of emulated disks with custom partition types, allowing developers to test novel layouts or behaviors in isolated virtual machines without affecting physical hardware. For example, can emulate MBR or tables with user-specified types for experimenting with filesystem prototypes or boot mechanisms in a controlled setting. Using local or experimental types carries significant risks, including misrecognition by operating systems and tools; for instance, Windows treats unknown Partition Type GUIDs as unrecognized partitions, mounting them internally but not assigning drive letters or exposing them in standard file explorers, which can lead to data inaccessibility. Duplicate or conflicting GUIDs may result in indeterminate behavior during disk copying or , potentially causing boot failures or if primary and backup GPT headers are not synchronized. Without proper documentation, such partitions become inaccessible across systems, exacerbating recovery challenges in multi-OS environments. Best practices for implementing custom types emphasize documentation and caution to mitigate these risks. Users should thoroughly document any non-standard MBR types or GPT GUIDs, including their intended purpose and handling instructions, to ensure accessibility. In MBR setups, extended partitions are recommended over primary ones for housing experimental types to avoid boot sector interference. The UEFI specification advises preferring established standard GUIDs for production systems to maintain compatibility, with custom types reserved strictly for development or isolated testing, as reiterated in updates to the EFI partitioning guidelines.

References

  1. [1]
    Chapter 3. Disk partitions | Red Hat Enterprise Linux | 9
    The type is a number that identifies the anticipated usage of a partition. Some operating systems use the partition type to: Denote a specific file system type ...
  2. [2]
    TypeID | Microsoft Learn
    Nov 5, 2020 · Use TypeID to manually specify a hard-drive partition type, such as a utility partition type. Five partition types are already built in: ...Values · Partition Types
  3. [3]
    Disk Partition Types (WinIoCtl.h) - Win32 apps | Microsoft Learn
    Jan 7, 2021 · In this article, the following table identifies the valid partition types that are used by disk drivers.Missing: MBR 0x06 evolution Linux
  4. [4]
    5. GUID Partition Table (GPT) Disk Layout - UEFI Forum
    The GUID Partition Table Header contains a header size field that is used in calculating the CRC32 that confirms the integrity of the GPT Header. While the GPT ...
  5. [5]
    An Introduction to Disk Partitions - Fedora Docs
    Some operating systems use the partition type to denote a specific file system type, to flag the partition as being associated with a particular operating ...Hard Disk Basic Concepts · Partitions: Turning One... · Strategies For Disk...
  6. [6]
    Basic and Dynamic Disks - Win32 apps | Microsoft Learn
    Jul 8, 2025 · The 16-byte partition type GUID, which is similar to a System ID in the partition table of an MBR disk, identifies the type of data that the ...
  7. [7]
    13.4. Setting a Partition Type | Red Hat Enterprise Linux | 7
    The following example shows how to change the partition type of the first partition to 0x83, default on Linux: ... type of partition 'Linux LVM' to 'Linux'.
  8. [8]
    BIOS/MBR-based hard drive partitions - Microsoft Learn
    Nov 30, 2021 · An MBR drive can have up to four standard partitions. Typically, these standard partitions are designated as primary partitions.Partition Requirements · Partition layout
  9. [9]
    Partition Boot Sector. MBR - Active@ File Recovery
    This is a 64-byte data structure located in the same sector as the Master Boot Record (cylinder 0, head 0, sector 1). The Partition Table conforms to a standard ...
  10. [10]
    Partition Table - OSDev Wiki
    MBR ; Partition 1, 0x01BE (446) ; Partition 2, 0x01CE (462) ; Partition 3, 0x01DE (478) ; Partition 4, 0x01EE (494) ...MBR · The System ID byte · Extended Partitions
  11. [11]
    Chapter 2. Disk partitions | Red Hat Enterprise Linux | 8
    To divide a disk into one or more logical areas, use the disk partitioning utility. It enables separate management of each partition.
  12. [12]
    fdisk(8) - Linux manual page - man7.org
    fdisk is a dialog-driven program for creation and manipulation of partition tables. It understands GPT, MBR, Sun, SGI and BSD partition tables.<|separator|>
  13. [13]
    fdisk - ArchWiki
    Sep 11, 2025 · When using MBR, fdisk will ask for the MBR partition type. Specify it, type p to create a primary partition or e to create an extended one.
  14. [14]
    Boot to UEFI Mode or Legacy BIOS mode - Microsoft Learn
    Dec 15, 2021 · In general, install Windows using the newer UEFI mode, as it includes more security features than the legacy BIOS mode.Missing: partition | Show results with:partition
  15. [15]
    Unified Extensible Firmware Interface - ArchWiki
    ### Summary of Compatibility Notes Between Legacy BIOS and UEFI for Partition Handling
  16. [16]
    IBM DOS 2.00 Master Boot Record - The Starman's Realm
    Jul 30, 2003 · This page examines the MBR code used in IBM's FDISK.COM utility for IBM® Personal Computer™ DOS 2.00 (1983) and all versions after that ...
  17. [17]
    Introduction to Partition Tables - The Starman's Realm
    Partition tables, located in the MBR, are used to define primary and extended partitions on a hard disk. The MBR contains the Master Partition Table.
  18. [18]
    Windows support for hard disks that are larger than 2 TB
    Jan 15, 2025 · Windows requires GPT for disks over 2TB. For bootable systems, UEFI is needed. MBR limits Windows to 2TB, and GPT is required for full capacity.Missing: primary | Show results with:primary
  19. [19]
    [PDF] Unified Extensible Firmware Interface Specification - UEFI Forum
    Jun 4, 2013 · Page 1. Unified Extensible Firmware Interface. Specification. Version ... Date. 2.0. First release of specification. January 31,. 2006. 2.1.
  20. [20]
    UEFI/GPT-based hard drive partitions - Microsoft Learn
    Feb 10, 2023 · The default partition layout for UEFI-based PCs is: a system partition, an MSR, a Windows partition, and a recovery tools partition.
  21. [21]
    Windows and GPT FAQ - Microsoft Learn
    The 16-byte partition type GUID, which is similar to a System ID in the partition table of an MBR disk, identifies the type of data that the partition contains ...
  22. [22]
    UEFI Systems | OpenCore Multiboot - Dortania
    Feb 14, 2021 · If your computer (prebuilt) came with Windows 8 (2012 and later), then your disk is probably partitioned as GPT. Usually, 2012+ computers that ...
  23. [23]
    GPT vs MBR: Which Partition Style Should You Choose in 2025?
    Aug 22, 2025 · If you're installing a new OS on modern hardware → go GPT. · If you're maintaining or repairing an old system → stick with MBR.
  24. [24]
    [MS-DMRP]: Glossary - Microsoft Learn
    Oct 29, 2020 · For example, partition type 0x07 indicates that the partition is formatted with the NTFS file system. Original equipment manufacturers can ...
  25. [25]
    GPT partition type for ext4 filesystem - linux - Super User
    Feb 28, 2016 · The correct GPT type code for Linux filesystems is 0FC63DAF-8483-4772-8E79-3D69D8477DE4. This is reduced to the code "8300" in GPT fdisk.How does Partition Type GUID decided in GPT? - Super UserWhat is the purpose of the Linux home partition code 8302?More results from superuser.com
  26. [26]
    GNU GRUB Manual 2.12
    This is the documentation of GNU GRUB, the GRand Unified Bootloader, a flexible and powerful boot loader program for a wide range of architectures.Introduction to GRUB · Booting · GRUB image files · GRUB environment variables
  27. [27]
    Details of Disk Utility's partitioning decisions - Mac Insights
    Sep 2, 2019 · The protective MBR occupies one 512-byte sector, the GPT header occupies the next sector, and the partition table entries follow. Then at sector ...
  28. [28]
    HFS Plus - Wikipedia
    HFS Plus or HFS+ is a journaling file system developed by Apple Inc. It replaced the Hierarchical File System (HFS) as the primary file system of Apple ...
  29. [29]
    FreeBSD Architecture Handbook
    Examples of recognized partition types are NTFS (Windows®, ID 0x7), ext2fs (Linux®, ID 0x83), and, of course, ffs / ufs2 (FreeBSD, ID 0xa5). The ...
  30. [30]
    Solved - Partition types | The FreeBSD Forums
    Jan 29, 2024 · Partitions are defined by their GUID, each partition type has a specific GUID, gpart(8) just shows which GUID was used. So you would need to change the actual ...Partition types | The FreeBSD ForumsSolved - GPT disk on legacy BIOS | The FreeBSD ForumsMore results from forums.freebsd.org
  31. [31]
    Creating and Changing Solaris fdisk Partitions
    The Solaris fdisk partition identifier on x86 systems has been changed from 130 (0x82) to 191 (0xbf). All Oracle Solaris commands, utilities, and drivers have ...Missing: MBR | Show results with:MBR
  32. [32]
    Make the most of large drives with GPT and Linux - IBM Developer
    Jul 3, 2012 · Linux employs a handful of MBR partition type codes, such as 0x82 and 0x83 , to identify its MBR partitions. Similar GUID codes exist to ...
  33. [33]
    Btrfs - ArchWiki
    Btrfs uses the concept of profiles to configure mirroring, parity, and striping. In standard RAID terminology, this is called RAID level.Btrfs(5) · Talk:Btrfs · Snapper · Timeshift<|separator|>
  34. [34]
    ext4 General Information - The Linux Kernel documentation
    Ext4 is an advanced level of the ext3 filesystem which incorporates scalability and reliability enhancements for supporting large filesystems (64 bit)Missing: btrfs | Show results with:btrfs
  35. [35]
    BTRFS — The Linux Kernel documentation
    ### Summary of Btrfs Partition Type or GUID
  36. [36]
    MBR2GPT error: MBR partition type of Dell OEM partition
    Jun 25, 2017 · It appears that partition type 222 (hex 0xDE) corresponds to the Dell OEM recovery/utility partition that came preinstalled with my laptop.‎"No Diagnostic Partition Identified" | DELL Technologies‎BIOS needs MBR bootable usb but disk is GPT | DELL TechnologiesMore results from www.dell.com
  37. [37]
    PARTITION_INFORMATION_GPT - Win32 apps | Microsoft Learn
    Sep 1, 2022 · Each partition type that the EFI specification supports is identified by its own GUID, which is published by the developer of the partition.Missing: 128- bit
  38. [38]
    FAQs about GUID Partitioning Table disk | Microsoft Learn
    The MBR contains one type 0xEE partition that spans the entire length of the disk. This is the same regardless of the number of partitions that are defined in ...Missing: 0x07 | Show results with:0x07<|separator|>
  39. [39]
    Recreating the Recovery partition on D drive - HP Support Community
    1) Download and install Macrium Reflect (MR) · 2) Run MR and choose the option: "Create an image of the partition(s) required to backup and restore Windows" to ...Missing: type | Show results with:type
  40. [40]
    Device configuration | Android Open Source Project
    Aug 26, 2024 · The partition type GUID is 19A710A2-B3CA-11E4-B026-10604B889DCF. a large android_ext partition that is encrypted using dm-crypt and formatted ...
  41. [41]
    Using GUID Partition Table (GPT) with Intel® RAID Controllers
    This document provides you with a step-by-step guide to install an operating system into GPT Disk on Intel Hardware RAID, under a uEFI environment.缺少字词: Matrix 0xEE
  42. [42]
    Hybrid MBRs - Roderick W. Smith
    Apr 18, 2022 · Hybrid MBR support was added to GPT fdisk 0.3.2 and to sgdisk 0.6.4. The procedure for creating a hybrid MBR is best illustrated with an example ...
  43. [43]
    Partition types: List of partition identifiers for PCs - CWI
    Below a list of the known partition IDs (system indicators) of the various operating systems, file systems, boot managers, etc.
  44. [44]
    Listing of MBR/EBR Partition Types - The Starman's Realm
    Partition types are in hexadecimal, with 00h, 05h, 0Fh, and EEh as special cases. Type 83h is used by many OSes, and 82h for swap. Types don't specify file ...
  45. [45]
    Introduction — QEMU documentation
    QEMU's system emulation provides a virtual model of a machine (CPU, memory and emulated devices) to run a guest OS.Missing: custom | Show results with:custom
  46. [46]