Chapter 4. Getting started with partitions


Use disk partitioning to divide a disk into one or more logical areas which enables work on each partition separately. The hard disk stores information about the location and size of each disk partition in the partition table. Using the table, each partition then appears as a logical disk to the operating system. You can then read and write on those individual disks.

For an overview of the advantages and disadvantages to using partitions on block devices, see the Red Hat Knowledgebase solution What are the advantages and disadvantages to using partitioning on LUNs, either directly or with LVM in between?.

4.1. Creating a partition table on a disk with parted

Use the parted utility to format a block device with a partition table more easily.

Warning

Formatting a block device with a partition table deletes all data stored on the device.

Procedure

  1. Start the interactive parted shell:

    # parted block-device
    Copy to Clipboard
  2. Determine if there already is a partition table on the device:

    (parted) print
    Copy to Clipboard

    If the device already contains partitions, they will be deleted in the following steps.

  3. Create the new partition table:

    (parted) mklabel table-type
    Copy to Clipboard
    • Replace table-type with with the intended partition table type:

      • msdos for MBR
      • gpt for GPT

    Example 4.1. Creating a GUID Partition Table (GPT) table

    To create a GPT table on the disk, use:

    (parted) mklabel gpt
    Copy to Clipboard

    The changes start applying after you enter this command.

  4. View the partition table to confirm that it is created:

    (parted) print
    Copy to Clipboard
  5. Exit the parted shell:

    (parted) quit
    Copy to Clipboard

4.2. Viewing the partition table with parted

Display the partition table of a block device to see the partition layout and details about individual partitions. You can view the partition table on a block device by using the parted utility.

Procedure

  1. Start the parted utility. For example, the following output lists the device /dev/sda:

    # parted /dev/sda
    Copy to Clipboard
  2. View the partition table:

    (parted) print
    
    Model: ATA SAMSUNG MZNLN256 (scsi)
    Disk /dev/sda: 256GB
    Sector size (logical/physical): 512B/512B
    Partition Table: msdos
    Disk Flags:
    
    Number  Start   End     Size    Type      File system  Flags
     1      1049kB  269MB   268MB   primary   xfs          boot
     2      269MB   34.6GB  34.4GB  primary
     3      34.6GB  45.4GB  10.7GB  primary
     4      45.4GB  256GB   211GB   extended
     5      45.4GB  256GB   211GB   logical
    Copy to Clipboard
  3. Optional: Switch to the device you want to examine next:

    (parted) select block-device
    Copy to Clipboard

For a detailed description of the print command output, see the following:

Model: ATA SAMSUNG MZNLN256 (scsi)
The disk type, manufacturer, model number, and interface.
Disk /dev/sda: 256GB
The file path to the block device and the storage capacity.
Partition Table: msdos
The disk label type.
Number
The partition number. For example, the partition with minor number 1 corresponds to /dev/sda1.
Start and End
The location on the device where the partition starts and ends.
Type
Valid types are metadata, free, primary, extended, or logical.
File system
The file system type. If the File system field of a device shows no value, this means that its file system type is unknown. The parted utility cannot recognize the file system on encrypted devices.
Flags
Lists the flags set for the partition. The most commonly used flags are boot, root, swap, hidden, raid, lvm, or lba. For a complete list of flags, see parted(8) man page on your system.

4.3. Creating a partition with parted

As a system administrator, you can create new partitions on a disk by using the parted utility.

Note

The required partitions are swap, /boot/, and / (root).

Prerequisites

  • A partition table on the disk.
  • If the partition you want to create is larger than 2 TiB, format the disk with the GUID Partition Table (GPT).

Procedure

  1. Start the parted utility:

    # parted block-device
    Copy to Clipboard
  2. View the current partition table to determine if there is enough free space:

    (parted) print
    Copy to Clipboard
    • Resize the partition in case there is not enough free space.
    • From the partition table, determine:

      • The start and end points of the new partition.
      • On MBR, what partition type it should be.
  3. Create the new partition:

    For MS-DOS:

    (parted) mkpart part-type fs-type start end
    Copy to Clipboard

    For GPT:

    (parted) mkpart part-name fs-type start end
    Copy to Clipboard
    • Replace part-type with primary, logical, or extended. This applies only to the MBR partition table.
    • Replace name with an arbitrary partition name. This is required for GPT partition tables.
    • Replace fs-type with xfs, ext2, ext3, ext4, fat16, fat32, hfs, hfs+, linux-swap, ntfs, or reiserfs. The fs-type parameter is optional. Note that the parted utility does not create the file system on the partition.
    • Replace start and end with the sizes that determine the starting and ending points of the partition, counting from the beginning of the disk. You can use size suffixes, such as 512MiB, 20GiB, or 1.5TiB. The default size is in megabytes.

    Example 4.2. Creating a small primary partition

    To create a primary partition from 1024 MiB until 2048 MiB on an MBR table, use:

    (parted) mkpart primary 1024MiB 2048MiB
    Copy to Clipboard

    The changes start applying after you enter the command.

  4. View the partition table to confirm that the created partition is in the partition table with the correct partition type, file system type, and size:

    (parted) print
    Copy to Clipboard
  5. Exit the parted shell:

    (parted) quit
    Copy to Clipboard
  6. Verify that the kernel recognizes the new partition:

    # cat /proc/partitions
    Copy to Clipboard

4.4. Setting a partition type with fdisk

You can set a partition type or flag by using the fdisk utility.

Prerequisites

  • A partition on the disk.

Procedure

  1. Start the interactive fdisk shell:

    # fdisk block-device
    Copy to Clipboard
  2. View the current partition table to determine the minor partition number:

    Command (m for help): print
    Copy to Clipboard

    You can see the current partition type in the Type column and its corresponding type ID in the Id column.

  3. Enter the partition type command and select a partition by using its minor number:

    Command (m for help): type
    Partition number (1-3, default 3): 2
    Copy to Clipboard
  4. Optional: Display the partition types:

    • For disks with an MBR partition table:

      Hex code or alias (type L to list all codes): L
      Copy to Clipboard
    • For disks with a GPT partition table:

      Partition type or alias (type L to list all): L
      Copy to Clipboard
  5. Set the partition type:

    • For disks with an MBR partition table:

      Hex code or alias (type L to list all codes): 8e
      Copy to Clipboard
    • For disks with a GPT partition table:

      Partition type or alias (type L to list all): 44
      Copy to Clipboard
  6. Write your changes and exit the fdisk shell:

    Command (m for help): write
    The partition table has been altered.
    Syncing disks.
    Copy to Clipboard

Verification

  • Verify your changes:

    # fdisk --list block-device
    Copy to Clipboard

4.5. Resizing a partition with parted

Using the parted utility, extend a partition to use unused disk space, or shrink a partition to use its capacity for different purposes.

Prerequisites

  • Back up the data before shrinking a partition.
  • If the partition you want to create is larger than 2 TiB, format the disk with the GUID Partition Table (GPT).
  • If you want to shrink the partition, first shrink the file system so that it is not larger than the resized partition.
Note

XFS does not support shrinking.

Procedure

  1. Start the parted utility:

    # parted block-device
    Copy to Clipboard
  2. View the current partition table:

    (parted) print
    Copy to Clipboard

    From the partition table, determine:

    • The minor number of the partition.
    • The location of the existing partition and its new ending point after resizing.
Important

When resizing a partition, ensure there is enough unallocated space between the end of the partition being resized and either the beginning of the next partition, or the end of the disk if it is the last partition. If there is not sufficient space, parted will return an error. However, it is best to verify the available space before attempting to resize to avoid partition overlap.

  1. Resize the partition:

    (parted) resizepart 1 2GiB
    Copy to Clipboard
    • Replace 1 with the minor number of the partition that you are resizing.
    • Replace 2 with the size that determines the new ending point of the resized partition, counting from the beginning of the disk. You can use size suffixes, such as 512MiB, 20GiB, or 1.5TiB. The default size is in megabytes.
  2. View the partition table to confirm that the resized partition is in the partition table with the correct size:

    (parted) print
    Copy to Clipboard
  3. Exit the parted shell:

    (parted) quit
    Copy to Clipboard
  4. Verify that the kernel registers the new partition:

    # cat /proc/partitions
    Copy to Clipboard
  5. Optional: If you extended the partition, extend the file system on it as well.

4.6. Removing a partition with parted

Using the parted utility, you can remove a disk partition to free up disk space.

Procedure

  1. Start the interactive parted shell:

    # parted block-device
    Copy to Clipboard
    • Replace block-device with the path to the device where you want to remove a partition: for example, /dev/sda.
  2. View the current partition table to determine the minor number of the partition to remove:

    (parted) print
    Copy to Clipboard
  3. Remove the partition:

    (parted) rm partition-number
    Copy to Clipboard
    • Replace partition-number with the partition number you want to remove.

    The changes start applying as soon as you enter this command.

  4. Verify that you have removed the partition from the partition table:

    (parted) print
    Copy to Clipboard
  5. Exit the parted shell:

    (parted) quit
    Copy to Clipboard
  6. Verify that the kernel registers that the partition is removed:

    # cat /proc/partitions
    Copy to Clipboard
  7. Remove the partition from the /etc/fstab file, if it is present. Find the line that declares the removed partition, and remove it from the file.
  8. Regenerate mount units so that your system registers the new /etc/fstab configuration:

    # systemctl daemon-reload
    Copy to Clipboard
    Important

    To remove a partition mentioned in /proc/cmdline or that is part of an LVM, see Configuring and managing logical volumes, and the dracut(8) and grubby (8) man pages on your system.

Back to top
Red Hat logoGithubredditYoutubeTwitter

Learn

Try, buy, & sell

Communities

About Red Hat Documentation

We help Red Hat users innovate and achieve their goals with our products and services with content they can trust. Explore our recent updates.

Making open source more inclusive

Red Hat is committed to replacing problematic language in our code, documentation, and web properties. For more details, see the Red Hat Blog.

About Red Hat

We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.

Theme

© 2025 Red Hat