标签:其他 权限设置 chmod file 设置 server 执行 添加 有用
语法格式: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
标签:其他 权限设置 chmod file 设置 server 执行 添加 有用
原文地址:https://www.cnblogs.com/therhub/p/10308848.html