fdisk 로는 2테라 이상의 하드를 인식하지 못하기 때문에 parted 로 파티션을 잡아야 한다. parted /dev/sdb mklabel gpt (parted) mkpart primary 0.00TB 3.00TB //primary, logical, extended
print quit //////////////////////////// mkarted partition name? primary file system type? ext4 Start? 1 end ? 100% mkfs -t ext4 /dev/sdb
fdisk -l /dev/sdc
Start End Size Type Name 1 2048 5860532223 2.7T Microsoft basic primary
gdisk /dev/sdb
t
8300
w
fdisk -l /dev/sdc WARNING: fdisk GPT support is currently new, and therefore in an experimental phase. Use at your own discretion.
Disk /dev/sdc: 3000.6 GB, 3000592982016 bytes, 5860533168 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disk label type: gpt Disk identifier: C8D75EC0-8BCD-4F27-8F9D-7E2B6326D44C
# Start End Size Type Name 1 2048 5860532223 2.7T Linux filesyste primary
|