嗨,我遇到了和您一样的问题,并且我遵循了本教程:
链接
答:首先,我们需要删除USB密钥上保留的旧分区。
Open a terminal and type sudo su
Type fdisk -l and note your USB drive letter.
Type fdisk /dev/sdx (replacing x with your drive letter)
Type d to proceed to delete a partition
Type 1 to select the 1st partition and press enter
Type d to proceed to delete another partition (fdisk should automatically select the second partition)
B.接下来,我们需要创建新分区。
Type n to make a new partition
Type p to make this partition primary and press enter
Type 1 to make this the first partition and then press enter
Press enter to accept the default first cylinder
Press enter again to accept the default last cylinder
Type w to write the new partition information to the USB key
Type umount /dev/sdx1 (replacing x with your drive letter)
C.最后一步是创建胖文件系统。
Type mkfs.vfat -F 32 /dev/sdx1 (replacing x with your USB key drive letter)