Partitioning
Related articles
Partitioning a hard drive divides the available space into sections that can be accessed independently. An entire drive may be allocated to a single partition, or multiple ones for cases such as dual-booting, maintaining a swap partition, or to logically separate data such as audio and video files.
The required information is stored in a #Partition table using a type such as MBR or GPT.
Tables are modified using a #Partitioning tool which must be compatible to the chosen type of partitioning table.
Once the partitions have been created, each must be formatted with an appropriate file system (swap excepted).
Partition table
Choosing between GPT and MBR
GUID Partition Table (GPT) is an alternative, contemporary, partitioning style; it is intended to replace the old Master Boot Record (MBR) system. GPT has several advantages over MBR which has quirks dating back to MS-DOS times. With the recent developments to the formatting tools fdisk (MBR) and gdisk (GPT), it is equally easy to get good dependability and performance for GPT or MBR.
One should consider these to choose between GPT and MBR:
- To dual-boot with Windows (both 32-bit and 64-bit) using Legacy BIOS, one must use MBR.
- To dual-boot Windows 64-bit using UEFI instead of BIOS, one must use GPT.
- If you are installing on the older hardware, especially laptop, consider choosing MBR because its BIOS might not support GPT.
- If you are partitioning a disk of 2 TiB or larger, you need to use GPT.
- It is recommended to use always GPT for UEFI boot as some UEFI firmwares do not allow UEFI-MBR boot.
- If none of the above apply, choose freely between GPT and MBR; since GPT is more modern, it is recommended in this case.
Master Boot Record
The Master Boot Record (MBR) is the first 512 bytes of a storage device. It contains an operating system bootloader and the storage device's partition table. It plays an important role in the boot process under BIOS systems. See Wikipedia:Master boot record#Sector layout for the MBR structure.
Master Boot Record (partition table)
MBR originally only supported up to 4 partitions. Later on, extended and logical partitions were introduced to get around this limitation.
There are 3 types of partitions:
- Primary
- Extended
- Logical
Primary partitions can be bootable and are limited to four partitions per disk or RAID volume. If a partitioning scheme requires more than four partitions, an extended partition containing logical partitions is used.
Extended partitions can be thought of as containers for logical partitions. A hard disk can contain no more than one extended partition. The extended partition is also counted as a primary partition so if the disk has an extended partition, only three additional primary partitions are possible (i.e. three primary partitions and one extended partition). The number of logical partitions residing in an extended partition is unlimited. A system that dual boots with Windows will require that Windows reside in a primary partition.
The customary numbering scheme is to create primary partitions sda1 through sda3 followed by an extended partition sda4. The logical partitions on sda4 are numbered sda5, sda6, etc.
Master Boot Record (bootstrap code)
The first 446 bytes of MBR are bootstrap code area. On BIOS systems it usually contains the first stage of the boot loader.
GUID Partition Table
GUID Partition Table (GPT) uses GUIDs (or UUIDs in linux world) to define partitions and its types.
Advantages of GPT
- Provides a unique disk GUID and unique partition GUID (
PARTUUID
) for each partition - A good filesystem-independent way of referencing partitions and disks. - Provides a filesystem-independent partition name (
PARTLABEL
). - Arbitrary number of partitions - depends on space allocated for the partition table - No need for extended and logical partitions. By default the GPT table contains space for defining 128 partitions. However if you want to define more partitions, you can allocate more space to the partition table (currently only gdisk is known to support this feature).
- Uses 64-bit LBA for storing Sector numbers - maximum addressable disk size is 2 ZiB. MBR is limited to addressing 2 TiB of space per drive.
- Stores a backup header and partition table at the end of the disk that aids in recovery in case the primary ones are damaged.
- CRC32 checksums to detect errors and corruption of the header and partition table.
Partitionless disk
Partitionless disk (a.k.a. superfloppy) refers to using a storage device without a partition table and having a file system directly on the storage device.
Btrfs partitioning
Btrfs can occupy an entire data storage device and replace the MBR or GPT partitioning schemes. See the Btrfs#Partitionless Btrfs disk instructions for details.
See also Wikipedia:Btrfs.
Partition scheme
There are no strict rules for partitioning a hard drive, although one may follow the general guidance given below. A disk partitioning scheme is determined by various issues such as desired flexibility, speed, security, as well as the limitations imposed by available disk space. It is essentially personal preference. If you would like to dual boot Arch Linux and a Windows operating system please see Dual boot with Windows.
Single root partition
This scheme is the simplest and should be enough for most use cases. A swapfile can be created and easily resized as needed. It usually makes sense to start by considering a single /
partition and then separate out others based on specific use cases like RAID, encryption, a shared media partition, etc.
Note that UEFI systems require an EFI System Partition, and installing GRUB on a BIOS system partitioned with GPT requires an additional BIOS boot partition.
Discrete partitions
Separating out a path as a partition allows for the choice of a different filesystem and mount options. In some cases like a media partition, they can also be shared between operating systems.
Mount points
The following mount points are possible choices for separate partitions, you can make your decision based on actual needs.
Root partition
The root directory is the top of the hierarchy, the point where the primary filesystem is mounted and from which all other filesystems stem. All files and directories appear under the root directory /
, even if they are stored on different physical devices. The contents of the root filesystem must be adequate to boot, restore, recover, and/or repair the system. Therefore, certain directories under /
are not candidates for separate partitions.
The /
partition or root partition is necessary and it is the most important. The other partitions can be replaced by it.
/boot
The /boot
directory contains the kernel and ramdisk images as well as the bootloader configuration file and bootloader stages. It also stores data that is used before the kernel begins executing user-space programs. /boot
is not required for normal system operation, but only during boot and kernel upgrades (when regenerating the initial ramdisk).
A separate /boot
partition is needed if installing a software RAID0 (stripe) system.
/home
The /home
directory contains user-specific configuration files, caches, application data and media files.
Separating out /home
allows /
to be re-partitioned separately, but note that you can still reinstall Arch with /home
untouched even if it is not separate - the other top-level directories just need to be removed, and then pacstrap can be run.
You should not share home directories between users on different distributions, because they use incompatible software versions and patches. Instead, consider sharing a media partition or at least using different home directories on the same /home
partition.
/var
The /var
directory stores variable data such as spool directories and files, administrative and logging data, pacman's cache, the ABS tree, etc. It is used, for example, for caching and logging, and hence frequently read or written. Keeping it in a separate partition avoids running out of disk space due to flunky logs, etc.
It exists to make it possible to mount /usr
as read-only. Everything that historically went into /usr
that is written to during system operation (as opposed to installation and software maintenance) must reside under /var
.
/tmp
This is already a separate partition by default, by virtue of being mounted as tmpfs by systemd.
Swap
A swap partition provides memory that can be used as virtual RAM. A swap file should be considered too, as they don't have any performance overhead compared to a partition but are much easier to resize as needed. A swap partition can potentially be shared between operating systems, but not if hibernation is used.
How big should my partitions be?
The size of the partitions depends on personal preference, but the following information may be helpful:
- /boot - 200 MB
- It requires only about 100 MB, but if multiple kernels/boot images are likely to be in use, 200 or 300 MB is a better choice.
- / - 15–20 GB
- It traditionally contains the
/usr
directory, which can grow significantly depending upon how much software is installed. 15–20 GB should be sufficient for most users with modern hard disks. If you plan to store a swap file here, you might need a larger partition size. - /var - 8–12 GB
- It will contain, among other data, the ABS tree and the pacman cache. Retaining these packages is helpful in case a package upgrade causes instability, requiring a downgrade to an older, archived package. The pacman cache in particular will grow as the system is expanded and updated, but it can be safely cleared if space becomes an issue. 8–12 GB on a desktop system should be sufficient for
/var
, depending on how much software will be installed. - /home - [varies]
- It is typically where user data, downloads, and multimedia reside. On a desktop system,
/home
is typically the largest filesystem on the drive by a large margin. - swap - [varies]
- Historically, the general rule for swap partition size was to allocate twice the amount of physical RAM. As computers have gained ever larger memory capacities, this rule is outdated. For example, on average desktop machines with up to 512MB RAM, the 2x rule is usually adequate; if a sufficient amount of RAM (more than 1024MB) is available, it may be possible to have a smaller swap partition. See Suspend and hibernate to hibernate into a swap partition or file.
- /data - [varies]
- One can consider mounting a "data" partition to cover various files to be shared by all users. Using the
/home
partition for this purpose is fine as well.
Partitioning tools
- fdisk — Terminal partitioning tools included in Linux.
- cfdisk — Terminal partitioning tool written with ncurses libraries.
- sfdisk — Scriptable version of fdisk.
- || util-linux
- cgdisk — GPT version of cfdisk.
- sgdisk — Scriptable version of gdisk.
- GNU Parted — Terminal partitioning tool.
- GParted — Graphical tool written in GTK.
- Partitionmanager — Graphical tool written in Qt.
This table will help you to choose utility for your needs:
User interaction | MBR | GPT |
---|---|---|
Dialog | fdisk parted |
fdisk gdisk parted |
Pseudo-graphics | cfdisk | cfdisk cgdisk |
Non-interactive | sfdisk parted |
sfdisk sgdisk parted |
Graphical | GParted partitionmanager |
GParted partitionmanager |
Partition alignment
Proper partition alignment is essential for optimal performance and longevity. This is due to the block nature of every I/O operation on the hardware level as well as file system level. The key to alignment is partitioning to (at least) the given block size, which depends on the used hardware. If the partitions are not aligned to begin at multiples of the block size, aligning the file system is a pointless exercise because everything is skewed by the start offset of the partition.
Hard disk drives
Historically, hard drives were addressed by indicating the cylinder, the head, and the sector at which data was to be read or written (also known as CHS addressing). These represented the radial position (cylinder), the axial position (drive head: platter and side), and the azimuth (sector) of the data respectively. Nowadays, with logical block addressing, the entire hard drive is addressed as one continuous stream of data and the term sector designates the smallest addressable unit.
The standard sector size is 512B, but modern high-capacity hard drives use greater value, commonly 4KiB. Using values greater than 512B is referred to as the Advanced Format.
Solid state drives
Solid state drives are based on flash memory, and thus differ significantly from hard drives. While reading remains possible in a random access fashion, erasure (hence rewriting and random writing) is possible only by whole blocks. Additionally, the erase block size (EBS) are significantly greater than regular block size, for example 128KiB vs. 4KiB, so it is necessary to align to multiples of EBS. Some NVMe drives should be aligned to 4KiB, but not all. To find the sector size of your SSD, see Advanced Format#How to determine if HDD employ a 4k sector.
Partitioning tools
In the past, proper alignment required manual calculation and intervention when partitioning. Many of the common partition tools now handle partition alignment automatically:
- fdisk
- gdisk
- gparted
- parted
On an already partitioned disk, you can use parted to verify the alignment of a partition on a device. For instance, to verify alignment of partition 1 on /dev/sda
:
# parted /dev/sda (parted) align-check optimal 1 1 aligned