标签:直接 facl miss nbsp acl root用户 may mkdir 删除
----------. 1 root root 76904 May 12 2019 /bin/chmod
[root@Centos8 dir]# chmod 755 /bin/chmod
-bash: /usr/bin/chmod: Permission denied
解决:两种办法,一种是直接把root用户设置ACL权限,另外一种是将root组设置ACL权限。
[root@Centos8 dir]# setfacl -m u:root:rwx /bin/chmod
[root@Centos8 dir]# chmod 755 /bin/chmod
[root@Centos8 dir]# ll /bin/chmod
-rwxr-xr-x+ 1 root root 76904 May 12 2019 /bin/chmod
[root@Centos8 dir]# setfacl -b /bin/chmod
[root@Centos8 dir]# chmod 755 /bin/chmod
[root@Centos8 dir]# ll /bin/chmod
-rwxr-xr-x. 1 root root 76904 May 12 2019 /bin/chmod
标签:直接 facl miss nbsp acl root用户 may mkdir 删除
原文地址:https://www.cnblogs.com/huangguangrui/p/12762140.html