ルートはファイル権限の影響を受けませんか?

ルートはファイル権限の影響を受けませんか?

これがrootとして機能するのはなぜですか?

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

ルートはファイル権限の影響を受けないと思いましたか?

ベストアンサー1

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

今答えがあります。

ルートには、すべてのファイルに対するrw権限があります。ファイルを変更できないとマークできます。

chattr +i filename

それを削除してください

chattr -i filename

おすすめ記事