私はpartedを最も基本的な方法で使用しようとしています。外付けUSBハードドライブをext2(理想的にはext4ですが、選択肢にはないようです)としてフォーマットします。これは3TBで、/dev/sddにアンマウントされています。
sudo parted /dev/sdd
mklabel
[type gpt]
[type yes to agree that everything on that hard drive will be lost]
mkpart
[type myDefaultPartitionName]
[type what for Start? prompt]
それを通過した後、end に何を入力すればよいかどうすればわかりますか?
ありがとう
答え1
gdisk の発見を手伝ってくれた Darael に特に感謝いたします。以下は、外付けハード ドライブのパーティション分割に成功した手順です。以下の x は、ドライブ名に置き換えてください。
sudo apt-get install gdisk
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 first sector
[enter] # choose default last sector
a502 # choose FreeBSD
v # [v]erify
c # [c]hange the name of the partition, e.g. MY_1TB_BACKUP
p # [p]rint to ensure the renaming is to your liking
w # [w]rite the changes to disk
sudo mkfs -t ext4 /dev/sdx1 # create the filesystem as type ext4