📌  相关文章
📜  如何将 USB 格式化为 fat32 ubuntu - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:25.745000             🧑  作者: Mango

代码示例1
3 On the command line
To show the USB drive among all storage partitions and volumes on your computer use: lsblk. You can also use: df.
Suppose it may be /dev/sdy1 . Unmount it with: sudo umount /dev/sdy1.
To format drive with the FAT32 file system format: sudo mkfs.vfat -F 32 /dev/sdy1.