Ich habe ein USB-Stick und eine Partition:
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 931.5G 0 disk
└─sda1 8:1 0 931.5G 0 part /
sdb 8:16 1 7.5G 0 disk
└─sdb1 8:17 1 7.5G 0 part
und ich habe mit Befehl formatiert:
# mkfs.fat -n A /dev/sdb
und es funktioniert gut.
Aber danach habe ich die Manpage für mkfs durchgesehen:
mkfs is used to build a Linux filesystem on a device, usually a hard
disk partition. The device argument is either the device name (e.g.
/dev/hda1, /dev/sdb2), or a regular file that shall contain the
filesystem. The size argument is the number of blocks to be used for
the filesystem.
Es heißt, mkfs
sollte mit Partitionsnummer funktionieren. Und mein Problem ist, warum mein Betrieb ohne Fehleraufforderung funktioniert?