Estoy un poco confundido acerca de fdisk y mkfs .
Entonces, aquí está el particionamiento y formateo típico de la unidad flash USB:
umount /dev/sdb
fdisk fdisk /dev/sdb
Command (m for help): d
Selected partition 1
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 1
First cylinder (1-960, default 1): ↵
Using default value 1
Last cylinder or +size or +sizeM or +sizeK (1-960, default 960): ↵
Using default value 960
Command (m for help): t
Selected partition 1
Hex code (type L to list codes): 6
Changed system type of partition 1 to 6 (FAT16)
Command (m for help): a
Partition number (1-4): 1
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
WARNING: If you have created or modified any DOS 6.x
partitions, please see the fdisk manual page for additional
information.
mkfs -t vfat /dev/sdb1
Mi pregunta es:
¿Por qué incluso tenemos que usar la opción t para especificar el tipo de partición mientras hacemos el paso fdisk ? ¿Cómo afecta todo? ¿Crea alguna marca en la unidad usb, lo que significa que solo se supone que hay una partición vfat? O ¿es seguro para saltar t paso en total? AFAIK: la partición solo divide el disco en áreas, ¿no es así?
Solo trato de entender por qué funciona de la manera en que funciona :)