junxnone / linux

Linux wiki
https://junxnone.github.io/linux/
0 stars 0 forks source link

Ubuntu Issues DiskLargerThan2TB #99

Open junxnone opened 5 years ago

junxnone commented 5 years ago

硬盘大于 2TB

Reference

Brief

$ sudo parted /dev/sda
GNU Parted 3.2
Using /dev/sda
Welcome to GNU Parted! Type 'help' to view a list of commands.

(parted) print
Error: /dev/sda: unrecognised disk label
Model: SEAGATE ST8000NM0185 (scsi)
Disk /dev/sda: 8002GB
Sector size (logical/physical): 512B/4096B
Partition Table: unknown
Disk Flags:

(parted) mklabel gpt

(parted) print
Model: SEAGATE ST8000NM0185 (scsi)
Disk /dev/sda: 8002GB
Sector size (logical/physical): 512B/4096B
Partition Table: gpt
Disk Flags:

Number  Start  End  Size  File system  Name  Flags

(parted) mkpart primary 0KB 8002GB
Warning: You requested a partition from 0.00B to 8002GB (sectors 0..15628053167).
The closest location we can manage is 17.4kB to 8002GB (sectors 34..15628053134).
Is this still acceptable to you?
Yes/No? YES

Warning: The resulting partition is not properly aligned for best performance.
Ignore/Cancel? Ignore

(parted) print
Model: SEAGATE ST8000NM0185 (scsi)
Disk /dev/sda: 8002GB
Sector size (logical/physical): 512B/4096B
Partition Table: gpt
Disk Flags:

Number  Start   End     Size    File system  Name     Flags
 1      17.4kB  8002GB  8002GB               primary

(parted) quit
Information: You may need to update /etc/fstab.

$ lsblk
NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
sda      8:0    0   7.3T  0 disk
└─sda1   8:1    0   7.3T  0 part

Format

mkfs.ext4 /dev/sda1