mount: wrong fs type, bad option, bad superblock on //192.168.10.58/test/,
missing codepage or helper program, or other error
(for several filesystems (e.g. nfs, cifs) you might
need a /sbin/mount.<type> helper program)
当出现这个问题的时候,是新版本的软件包升级了。升级新版本的软件包即可。
apt-get install cifs-util
mkdir /win
mount -t cifs -o username=zhangsan,passwd=123 //192.168.10.58/test /win
umount /win
fstab挂载方法
//192.168.10.58/test /win cifs default,username=zhangsan,password=123 0 2 (0代表不做备份,2代表fsck做检查)
missing codepage or helper program, or other error
(for several filesystems (e.g. nfs, cifs) you might
need a /sbin/mount.<type> helper program)
当出现这个问题的时候,是新版本的软件包升级了。升级新版本的软件包即可。
apt-get install cifs-util
mkdir /win
mount -t cifs -o username=zhangsan,passwd=123 //192.168.10.58/test /win
umount /win
fstab挂载方法
//192.168.10.58/test /win cifs default,username=zhangsan,password=123 0 2 (0代表不做备份,2代表fsck做检查)
本文介绍了如何解决在Linux系统中遇到的CIFS挂载错误,包括错误信息的解析及解决方案,通过升级软件包和使用正确的挂载命令来实现网络文件系统的成功挂载。
2329

被折叠的 条评论
为什么被折叠?



