linux虚拟机挂载磁盘U盘

linux虚拟机挂载磁盘U盘_第1张图片

 

用fdisk -l 看看U盘的设备

目录 /mnt 下建立了 文件夹 /usb

挂载:mount  /dev/sdb   /mnt/usb

卸载:umount /mnt/usb

挂载时报错:

mount时候遇到写保护,将以只读方式挂载。
mount: 未知的文件系统类型“(null)”

格式化命令:

mkfs.ext4 /dev/sdb

mke2fs 1.42.9 (28-Dec-2013)
/dev/sdb is entire device, not just one partition!
无论如何也要继续? (y,n) y
文件系统标签=
OS type: Linux
块大小=4096 (log=2)
分块大小=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
476720 inodes, 1904000 blocks
95200 blocks (5.00%) reserved for the super user
第一个数据块=0
Maximum filesystem blocks=1950351360
59 block groups
32768 blocks per group, 32768 fragments per group
8080 inodes per group
Superblock backups stored on blocks: 
	32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632

Allocating group tables: 完成                            
正在写入inode表: 完成                            
Creating journal (32768 blocks): 完成
Writing superblocks and filesystem accounting information: 完成

再次执行挂载:

mount  /dev/sdb   /mnt/usb

成功

你可能感兴趣的:(linux)