Sono un po 'confuso su fdisk e mkfs .
Quindi - ecco il tipico partizionamento e formattazione dell'unità 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
La mia domanda è:
Perché dobbiamo anche usare l' opzione t per specificare il tipo di partizione mentre facciamo il passo fdisk ? In che modo influenza tutto? Crea qualche segno sull'unità USB, il che significa che dovrebbe esserci solo una partizione vfat? O è sicuro di saltare t passo del tutto? AFAIK - il partizionamento sta solo dividendo il disco in aree - non è vero?
Sto solo cercando di capire perché funziona come funziona :)