Je suis un peu confus à propos de fdisk et mkfs .
Voici donc le partitionnement et le formatage typiques des clés 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
Ma question est:
Pourquoi devons-nous même utiliser l' option t pour spécifier le type de partition lors de l' étape fdisk ? Comment cela affecte-t-il tout? Est-ce que cela crée une marque sur le lecteur USB, ce qui signifie qu'il ne devrait y avoir qu'une partition vfat? Ou est - il sûr de sauter t étape tout à fait? AFAIK - le partitionnement ne fait que diviser le disque en zones - n'est-ce pas?
J'essaye juste de comprendre pourquoi ça marche comme ça :)