Resize a 2TB partition on a 3TB disk created with fdisk

8,606

MBR partition only supports 4 primary partitions per hard drive, and a maximum partition size of 2TB. That is why you're only seeing 2TB.

GUID (GPT disks) can support a volume up to 18 EB (Exabyte’s) or 1 million terabytes.

So you will have to change the partitioning scheme from MBR to GUID (GPT Disk) to be able to see the full capacity.

NOTE: When dealing with partitions, always make sure that a backup is available in case something goes wrong. You may consider Clonezilla

Share:
8,606

Related videos on Youtube

Damian
Author by

Damian

Updated on September 18, 2022

Comments

  • Damian
    Damian over 1 year

    I recently added a new 3TB hard drive to a headless media server (HP proliant microserver) running Ubuntu server 12.04. I followed this tutorial, which uses fdisk to create a single partition of the maximum size reported by fdisk. I have choosen ext4 format. I then copied across all my media, which took some time.

    I am guessing that fidisk has a 2TB limit, because du is reporting this as the size. Is there any way to increase the size of the partition to 3TB without having to copy all my media over again?

  • Damian
    Damian over 11 years
    How do i go about changing from MBR to GUID?
  • Mitch
    Mitch over 11 years
    You can use the Live CD, to accomplish that.
  • Damian
    Damian over 11 years
    It is a headless server without a CD drive. Is there a command line tool i can use? The OS is not on the 3TB disk if that makes a difference.
  • Mitch
    Mitch over 11 years
    Put the Live CD on a flash drive, and you can use a USB flash to boot from.
  • Damian
    Damian over 11 years
    Yes but this doesn't actually tell me how i go about doing this.
  • phoibos
    phoibos over 11 years
    Well, this erases all data currently residing on the partition.
  • David Foerster
    David Foerster over 9 years
    The GPT counterpart of fdisk is called gdisk by the way. You can create a new partition table and partition(s) from scratch with that. This will generally delete all the data on the drive, unless you create the partition(s) at the same offset(s) it/they had with MBR.