我有一个笔式驱动器和一个分区:
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
并且我已经用命令格式化了:
# mkfs.fat -n A /dev/sdb
而且效果很好。
但是之后,我浏览了mkfs的手册页:
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.
它说mkfs
应该使用分区号。我的问题是为什么我的操作可以正常运行而没有错误提示?