Linxu mount.cifs 挂载win10共享文件夹失败问题
mount.cifs //192.168.80.10/share /abc //挂载
报错信息如下:mount error(112) :Host is down
Refer to the mount.cifs(8) manual page
同样该命令对于win7可以使用,但是win8和win10,对于挂载共享目录来说需要用以下标准语法:mount -t cifs //IP地址/共享名称 挂载点 -o username=用户名,password=密码,其他选项
解决办法如下:
mount -t cifs //192.168.80.10/media /share -o username=root,password=123456,vers=2.0
验证挂载成功