mount.cifs Windows共享目录权限755问题
2021-07-15 18:17
标签:mount cifs 通过linux 的mount命令挂载windows下的共享目录,挂载后目录权限为755,普通用户没有权限写入。 可以通过file_mode 和dir_mode 来设置权限,覆盖默认的755权限。 通过linux的 man mount.cifs 简单的了解下。 示例: mount.cifs Windows共享目录权限755问题 标签:mount cifs 原文地址:http://blog.51cto.com/dengaosky/2107593 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
下一篇:api接口开发跨域注意事项和设置
文章标题:mount.cifs Windows共享目录权限755问题
文章链接:http://soscw.com/index.php/essay/105681.html