分手:如何知道输入什么起始号码?


0

我试图以最基本的方式使用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]

在我能够解决之后,我怎么知道要输入什么?

谢谢


现在无法测试,但只需添加一个非常大的数字,我认为它将自动向下舍入到最大可能。
terdon 2013年

我想要尽可能多的开头数吗?
tarabyte 2013年

我试过Start?0和End?3000。单位不清楚,但我认为它们是MB。我得到:'警告:由于最佳性能,所得到的parittion没有正确对齐。
tarabyte 2013年

单位确实是MB
tarabyte 2013年

不是你要求的,而是会做的工作:你可以gdisk用来创建GPT,包括分区(它将提示新分区的最早和最后可行点的默认值),然后mke2fs -t ext4 /dev/sdx1(对于相关的x,并假设您只测试一个分区)来创建文件系统。它有一个小优势,它将创建一个ext4文件系统而不是ext2文件系统,你说这是最好的。
Darael 2013年

Answers:


0

特别感谢Darael帮助我发现gdisk。以下是我成功允许我对外部硬盘进行分区的步骤。替换下面的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
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.