linx下对文件权限设置
Posted therhub
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linx下对文件权限设置相关的知识,希望对你有一定的参考价值。
语法格式:chmod u+/-rwx,g+/-rwx,o+/-rwx filename
如:
1. 给主人添加读权限,并减去执行权限:chmod u+r,u-x filename
2. 给所有用户(主人、同组用户、其他组用户)都添加写权限,并减去执行权限:chmod +w,-x filename
3. 给主人添加读和执行权限:chmod u+rx filename
4. 给同组用户减去写和执行权限:chmod g-wx filename
chmod u+rx xxServer
以上是关于linx下对文件权限设置的主要内容,如果未能解决你的问题,请参考以下文章