针对CentOS 6.5系统。
通过linux 的mount命令挂载windows下的共享目录,挂载后目录权限为755,普通用户没有权限写入。
可以通过file_mode 和dir_mode 来设置权限,覆盖默认的755权限。
通过linux的 man mount.cifs 简单的了解下。
file_mode=arg If the server does not support the CIFS Unix extensions this overrides the default file mode. dir_mode=arg If the server does not support the CIFS Unix extensions this overrides the default mode for directories.
示例:
mount -t cifs -o username=ftp,password=3dmedcom,rw,dir_mode=0777,file_mode=0777 //10.10.172.91/GENEbackup /GENEbackup #这样看到的文件目录权限都为777 mount -t cifs -o username=ftp,password=3dmedcom //10.10.172.91/GENEbackup /GENEbackup #经测试,可以读写。这样看到的文件目录权限都为755
原文地址:http://blog.51cto.com/dengaosky/2107593
时间: 2024-10-29 12:26:57