8

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 ...

B14D3
  • 5,188
  • 15
  • 64
  • 83

2 Answers2

18

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.

Coops
  • 6,055
  • 1
  • 34
  • 54
rems
  • 2,260
  • 13
  • 11
6

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

shellholic
  • 1,295
  • 9
  • 11