标签:chm nbsp chmod set 通过 pre 添加权限 div sbin
查看chmod
[17:03:46 root@localhost data]#ll /usr/bin/chmod -rw-r--r--. 1 root root 58584 Nov 6 2016 /usr/bin/chmod
通过chmod自己给自己添加权限,显示拒绝
[17:03:58 root@localhost data]#chmod +x /usr/sbin/chmod -bash: /usr/bin/chmod: Permission denied
解决办法:
通过acl添加执行权限
setfacl -m u:root:x /usr/bin/chmod
使用chmod给自己添加执行权限
chmod +x /usr/bin/chmod
取消掉acl权限
setfacl -b /usr/bin/chmod
标签:chm nbsp chmod set 通过 pre 添加权限 div sbin
原文地址:https://www.cnblogs.com/alexlv/p/14890167.html