Ich bin ein wenig verwirrt über fdisk und mkfs .
Also - hier ist die typische Partitionierung und Formatierung von USB-Sticks:
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
Meine Frage ist:
Warum müssen wir überhaupt die Option t verwenden , um den Partitionstyp anzugeben, während wir den fdisk- Schritt ausführen ? Wie wirkt es sich auf alles aus? Erzeugt es eine Markierung auf dem USB-Laufwerk, was bedeutet, dass es nur eine vfat-Partition geben soll? Oder ist es sicher zu überspringen t insgesamt Schritt? AFAIK - Partitionierung teilt die Festplatte nur in Bereiche auf - nicht wahr?
Ich versuche nur zu verstehen, warum es so funktioniert, wie es funktioniert :)
quelle