>2TB Partitions
The normal fdisk partition utility supplied with Ubuntu can only create MBR partitions which are limited to 2TB in size. To create a larger partition you need to use gdisk to creat a GPT partition:
1 2 3 4 5 6 7 8 |
apt-get install gdisk gdisk /dev/sdc n (enter partition start and end) t L 0700 (Linux/Windows data) w mkfs.ext4 /dev/sdc1 |