Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I just bought a 3TB WD green drive, but when I try to partition in in gparted I get an error like:

======================
libparted : 2.3
======================
partition length of 5860530176 sectors exceeds the msdos-partition-table-imposed maximum of 4294967295

And when I try with Ubuntu "Disk Utility" I get a similar error like:

Error creating partition: helper exited with exit code 1: In part_add_partition: device_file=/dev/sdc, start=0, size=3000592982016, type=0x83
Entering MS-DOS parser (offset=0, size=3000592982016)
MSDOS_MAGIC found
looking at part 0 (offset 0, size 0, type 0x00)
new part entry
looking at part 1 (offset 0, size 0, type 0x00)
new part entry
looking at part 2 (offset 0, size 0, type 0x00)
new part entry
looking at part 3 (offset 0, size 0, type 0x00)
new part entry
Exiting MS-DOS parser
MSDOS partition table detected
containing partition table scheme = 0
got it
got disk
new partition
Error: partition length of 5860528002 sectors exceeds the msdos-partition-table-imposed maximum of 4294967295
ped_disk_add_partition() failed
share|improve this question
1  
I dont have such a disk to test with - but I think there are two possible ways to resolve this as described here. lists.fedoraproject.org/pipermail/users/2011-September/… – fossfreedom Dec 2 '11 at 10:01

1 Answer

up vote 12 down vote accepted

The traditional partition table format used on PCs includes a 32-bit field to record the number of sectors a particular partition covers.

With 512 byte sectors, this sets the maximum partition size at 2TB (512 * 232).

If you need a partition larger than 2TB, you will need to repartition the drive using the GUID Partition Table (GPT) format for the disk. If you are not trying to boot off this new disk, you are unlikely to run into any compatibility problems.

Using GParted, you can do this by going into Device->Create Partition Table and select "gpt" from the list.

share|improve this answer
Plus, if you use GPT as opposed to MBR, you can have MUCH more primary partitions. With MBR, you only get 4 primary partitions, and then you must create logical partitions after that, which is frustrating and isn't compatible with certain operating systems. On GPT, however, you can have a lot of partitions, like on my MacBook Pro: OSX, OSX Recovery, ext4 /, linux swap, NTFS (Windows). – TK Kocheran Jan 3 '12 at 21:18
6  
I just bought a 3TB today and this saved my life. – Luis Alvarado Feb 7 '12 at 3:54
1  
You've also saved my life and fed many starving children in Africa. – capdragon Nov 20 '12 at 1:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.