-
-
Save Cathon/0adf15651c9073d2ec2d8bb286901316 to your computer and use it in GitHub Desktop.
linux commands about U 盘
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 查看文件系统 | |
df -h | |
# 操作分区表 | |
fdisk -l | |
fdisk /dev/sdb | |
# 格式化文件系统 | |
mkfs -V -t vfat /dev/sdb1 | |
# 挂载光盘 | |
mount -t iso9660 /dev/cdrom /mnt/cdrom/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment