本文主要是介绍Linux中chmod权限被删除如何恢复,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
问题
-
chmod命令,可以修改文件,如果chmod命令本身的权限被取消怎么办?
-
回答:通过facl添加权限,从而恢复chmod功能
[02:25:40 root@C8-3-55 sun6]#which chmod ## 查看chmod位置
/usr/bin/chmod
[02:28:34 root@C8-3-55 sun6]#ll /usr/bin/chmod ## 查看chmod权限
-rwxr--r-x. 1 root root 76904 5月 11 2019 /usr/bin/chmod## 养成好习惯,修改文件先备份
[02:28:47 root@C8-3-55 sun6]#cp -a /usr/bin/chmod /usr/bin/chmod.bak
## 删除chmod所有权限
[02:30:21 root@C8-3-55 sun6]#chmod a-rwx /usr/bin/chmod;ll /usr/bin/chmod
----------. 1 root root 76904 5月 11 2019 /usr/bin/chmod
## 使用chmod为chmod增加权限,发现没有权限了
[02:30:41 root@C8-3-55 sun6]#chmod a+r /usr/bin/chmod
-bash: /usr/bin/chmod: 权限不够
## 使用facl添加权限
[02:31:07 root@C8-3-55 sun6]#setfacl -m u:root:rwx /usr/bin/chmod;ll /usr/bin/chmod;getfacl /usr/bin/chmod
----rwx---+ 1 root root 76904 5月 11 2019 /usr/bin/chmod
getfacl: Removing leading '/' from absolute path names
# file: usr/bin/chmod
# owner: root
# group: root
user::---
user:root:rwx
group::---
mask::rwx
other::---
## 重新执行chmod成功
[02:32:31 root@C8-3-55 sun6]#chmod 745 /usr/bin/chmod;ll /usr/bin/chmod
-rwxr--r-x+ 1 root root 76904 5月 11 2019 /usr/bin/chmod
这篇关于Linux中chmod权限被删除如何恢复的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!