root 不受文件权限的影响吗?

root 不受文件权限的影响吗?

为什么这个可以以 root 身份工作?

# touch test1
# chmod 000 ./test1
# echo "test" > ./test1

我认为root不受文件权限的影响?

答案1

https://superuser.com/questions/104015/removing-write-permission-does-not-prevent-root-from-writing-to-the-file

这下就有答案了。

root 对所有文件都有 rw 权限。您可以将文件标记为不可变

chattr +i filename

删除那是

chattr -i filename

相关内容