ECS Linux挂载Windows共享文件夹提示“wrong fs type bad option bad superblock”错误的分析解决
发布日期:2015-12-15 18:12:53
Linux系统通过内网IP挂载Windows系统共享目录命令是: mount -t cifs -o username='共享账号',password='密码' //10.x.x.x(Windows共享服务器内网IP)/共享目录 /linux本地目录 如提示报错如下: mount: wrong fs type, bad option, bad superblock on //10.x.x.x/共享目录,代表系统不能识别文件系统。 Linux系统下共享需要cifs协议支持,需要安装cifs协议组件包,因为默认镜像无安装相关协议包,可通过yum search cifs来查找具体要安装的包,再通过yum install cifs-utils来安装相关组件就行了。
|