![Partido: ¿Cómo saber qué número de inicio ingresar?](https://rvso.com/image/1346167/Partido%3A%20%C2%BFC%C3%B3mo%20saber%20qu%C3%A9%20n%C3%BAmero%20de%20inicio%20ingresar%3F.png)
Estoy intentando utilizar parted de la forma más básica: formatear un disco duro USB externo como ext2 (idealmente ext4 pero no parecía una opción). Tiene 3TB y está desmontado en /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]
Una vez que pueda superar eso, ¿cómo sé qué escribir para finalizar?
Gracias
Respuesta1
Un agradecimiento especial a Darael por ayudarme a descubrir gdisk. A continuación se detallan los pasos que me permitieron particionar con éxito mi disco duro externo. Reemplace x a continuación con el nombre de su unidad.
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