[root@"mypc" ~]# mount /mnt /dev/sdb1
mount: you must specify the filesystem type
[root@"mypc" ~]# mount /dev/sdb1 /mnt/
mount: you must specify the filesystem type
在挂载文件系统的时候提示mount: you must specify the filesystem type
解决方法:
1、挂载的设备和挂载点写颠倒了,正确如下:
[root@"mypc" ~]# mount /dev/sdb1 /mnt/
2、sdb1没有格式化,格式化后解决。