1. 在windows 7上无法设置共享
解决方法:
http://blog.chinaunix.net/uid-30212356-id-5200992.html
2. 挂载共享目录时遇到错误无法挂载
[root@www ~]# mount -t cifs //192.168.85.128/tools /mount_dir -o username=user1
mount: block device //192.168.85.128/tools is write-protected, mounting read-only
mount: cannot mount block device //192.168.85.128/tools read-only
查资料得知是缺少了cifs-utils包,安装即可
[root@www ~]# yum list all | grep cifs
cifs-utils.i686 4.8.1-20.el6 base
[root@www ~]# yum install cifs-utils.i686 -y
再次测试:
[root@www ~]# mount -t cifs //192.168.85.128/tools /mount_dir -o username=user1
Password:
[root@www ~]#
挂载成功;
阅读(2139) | 评论(0) | 转发(0) |