【问题描述】
Windows 机器192.168.1.103共享了 /share/yasi 目录,并且赋予了写的权限,在Windows机器下可以用 yasi/pass 登录。在一台CentOS 7机器上尝试将该共享目录 mount 到 /mnt/yasi 上
mount -t cifs //192.168.1.103/share/yasi /mnt/yasi -o username="yasi",password="pass"
结果失败,错误提示如下:
mount: block device //192.168.1.103/share/yasi is write-protected, mounting read-only
mount: cannot mount block device //192.168.1.103/share/yasi read-only
【原因】
需要安装cifs-utils
【解决】
安装cifs-utils
yum install cifs-utils.x86_64
然后重新执行
mount -t cifs -o username=Everyone,uid=0000,gid=0000 //192.168.1.103/share/yasi /mnt/win
就mount上了,并且具有写的权限。