问题概述:
在win上有共享文件需要挂载到linux服务器上,在没有挂载之前在linux上所有的用户都都没有权限进入挂载的目录,也没有权限修改挂载目录的权限
1.挂载win的目录:
mount -t cifs -o username=app,password=123456 //192.168.9.2/res /home/app/tomcat/webapps/ceshi/winshare
2.目录是挂载上了,但是挂载目录的权限是root,其他普通用户无法创建文件和目录所以需要重新挂载
umount //10.46.236.5/res
3.再次挂载:
mount -t cifs -o rw,uid=500,gid=500,username=app,password=123456 //192.168.9.2/res /home/app/tomcat/webapps/ceshi/winshare
此处:uid和gid是普通用户的uid和gid,username和password是共享目录的用户名和密码
网友评论