檔案、目錄防寫(轉)

ba發表於2007-08-16
檔案、目錄防寫(轉)[@more@][root@book ~]# touch a.txt

[root@book ~]# chattr +i a.txt

[root@book ~]# rm -f a.txt
rm: cannot remove `a.txt': Operation not permitted

[root@book ~]# ls
anaconda-ks.cfg a.txt Desktop firstboot.1120181163.33 install.log install.log.syslog

[root@book ~]# chattr -i a.txt

[root@book ~]# rm -f a.txt

[root@book ~]# ls
anaconda-ks.cfg Desktop firstboot.1120181163.33 install.log install.log.syslog


[root@test tmp]# mkdir tmp
[root@test tmp]# chattr +i tmp
[root@test tmp]# rm -fr tmp
rm: cannot remove directory `tmp': Operation not permitted

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10617731/viewspace-962006/,如需轉載,請註明出處,否則將追究法律責任。

相關文章