[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没有格式化,格式化后解决。

相关文章:

  • 2021-11-12
  • 2021-09-27
  • 2021-05-23
  • 2021-08-20
  • 2021-06-13
  • 2022-12-23
猜你喜欢
  • 2022-02-21
  • 2022-01-24
  • 2022-02-03
  • 2022-12-23
  • 2021-10-18
  • 2021-11-23
相关资源
相似解决方案