United States (change)
Shortcuts: Downloads Fedora Red Hat Network
Account Links: Cart Your Account Logout
Release Found:Red Hat Enterprise Linux 3 and Red Hat Enterprise Linux 4
Symptom:
fdisk unable to create partition greater than 2 TB
Solution:
The fdisk utility can only create partitions that does not exceed 95,000 cylinders or 2TB size. To get around the limitation, the partition needs to be created using parted with GPT as its disklabel.
GUID Partition Table (GPT) was originally introduced for iA64 systems. Currently parted is the only partitioning tool under Linux that can handle > 2TB partition and GPT disklabel.
The example below demonstates how to create a 3TB partition:
parted /dev/sdj
mklabel gpt
mkpart primary 0 3001G
quit
mkfs.ext3 /dev/sdj1