Estou um pouco confuso sobre fdisk e mkfs .
Então - aqui está o particionamento e a formatação típicos da unidade 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
Minha pergunta é:
Por que precisamos usar a opção t para especificar o tipo de partição ao executar a etapa fdisk ? Como isso afeta tudo? Ele cria alguma marca na unidade USB, o que significa que apenas deveria haver partição vfat? Ou será que é seguro para pular t passo por completo? AFAIK - particionamento está apenas dividindo disco em áreas - não é?
Apenas tentando entender por que funciona da maneira que funciona :)
fonte