Is there a way to make partition bigger than 2 TB on ext4 file system ?? Im trying to do that on debian but get message Partition size can not exceed 2TB ...

link|improve this question

79% accept rate
feedback

2 Answers

up vote 14 down vote accepted

That is not a limitation of ext4, but a limitation of the MSDOS partition table format you are using.

You'll need to switch to GPT partition tables. Use gparted or parted to create a GPT partition table on your disk. This will allow you to create partitions bigger than 2 TB.

fdisk doesn't work with GPT and won't let you have >2TB partitions.

link|improve this answer
1  
... or GPT fdisk. – JdeBP May 17 '11 at 10:52
feedback

You can, but MBR can't allow disk to be more that 2TB. You have to switch your partition table to GPT

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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