$ touch test.txt
$ chmod 777 test.txt
$ ls -al test.txt
-rwxrwxrwx 1 root root 13 Aug 31 15:03 test.txt
$ rm test.txt
rm: cannot remove ‘test.txt’: Operation not permitted
chattr +i test.txt
$ lsattr test.txt
----i--------e-- test.txt
chattr -i test.txt
原文:https://www.cnblogs.com/xuewenlong/p/12882190.html