Saya tahu ada beberapa pertanyaan serupa di luar sana, tetapi banyak dari jawabannya mengerikan.
Saya kira fdisk TIDAK BISA mendukung drive yang lebih besar dari 2TB? Menu interaktif berubah pada saya jadi saya tidak tahu harus berbuat apa sekarang. Ia meminta saya untuk silinder pertama dan silinder terakhir. Saya hanya ingin membuat semuanya ext4 untuk backup kotak ubuntu saya.
Saya tidak mengerti mengapa saya tidak bisa mendapatkan filesystem di hard drive saya. Ini adalah hasil sudo parted -l
setelah saya menyelesaikan percobaan pertama.
# Install gdisk
sudo apt-get install gdisk
# Partition the external hard drive
sudo parted -l # inspect your drive's name and make sure it is the external one!
sudo umount /dev/sdx1 # ensure that drive is NOT mounted
sudo gdisk /dev/sdx1 # launch gdisk on the drive of interest
? # explore the features gdisk offers
n # create a [n]ew partition
[enter] # choose default partition number
[enter] # choose default first sector
[enter] # choose default last sector
[enter] # choose default, linux filesystem (8300)
v # verify
c # change the name of the partition, e.g. MY_BACKUP_3TB
p # print to ensure the renaming is to your liking
w # write the changes to disk
# Reboot (got warning that I needed to so kernal can recognize the change)
sudo reboot
# Format the hard drive
sudo mkfs -t ext4 /dev/sdx1 # create the filesystem as type ext4
# Inspect the results
sudo parted -l