mount.cifs Windows共享目录权限755问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mount.cifs Windows共享目录权限755问题相关的知识,希望对你有一定的参考价值。
针对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
以上是关于mount.cifs Windows共享目录权限755问题的主要内容,如果未能解决你的问题,请参考以下文章
Linux 系统定时拷贝(发送)文件到 windows 系统,实现异地备份