2 TB+ Partition unter Linux partionieren

Wer eine Festplatte mit mehr als 2 TB unter Linux partionieren will, kommt mit dem altbekannten Tool fdisk leider nicht sehr weit - es unterstützt kein GPT. Mit GNU parted lässt sich das GPT-Layout auf einer Festplatte aktivieren und eine Partition erstellen:

 1st-storage:~# parted /dev/sda
 2GNU Parted 1.8.8
 3Using /dev/sda
 4Welcome to GNU Parted! Type 'help' to view a list of commands.
 5(parted) mklabel gpt
 6Warning: The existing disk label on /dev/sda will be destroyed and all data on
 7this disk will be lost. Do you want to continue?
 8parted: invalid token: gpt
 9Yes/No? Yes
10New disk label type?  [msdos]? gpt
11(parted) p
12Model: ATA eSATA-2 External (scsi)
13Disk /dev/sda: 3000GB
14Sector size (logical/physical): 512B/512B
15Partition Table: gpt
16
17Number  Start  End  Size  File system  Name  Flags
18
19(parted) mkpart primary 0 3000GB
20(parted) p
21Model: ATA eSATA-2 External (scsi)
22Disk /dev/sda: 3000GB
23Sector size (logical/physical): 512B/512B
24Partition Table: gpt
25
26Number  Start   End     Size    File system  Name     Flags
27 1      17,4kB  3000GB  3000GB               primary
28
29(parted) quit
30Information: You may need to update /etc/fstab.