[root@zetawiki ~]# echo hello > 1.txt
[root@zetawiki ~]# lsattr 1.txt
------------- 1.txt
[root@zetawiki ~]# echo world >> 1.txt
[root@zetawiki ~]# cat 1.txt
hello
world
[root@zetawiki ~]# chattr +i 1.txt
[root@zetawiki ~]# lsattr 1.txt
----i-------- 1.txt
[root@zetawiki ~]# echo hi >> 1.txt
-bash: 1.txt: Permission denied
[root@zetawiki ~]# rm -f 1.txt
rm: cannot remove `1.txt': Operation not permitted
[root@zetawiki ~]# chattr -i 1.txt
[root@zetawiki ~]# lsattr 1.txt
------------- 1.txt
[root@zetawiki ~]# rm -f 1.txt