redhat5 linux chattr控制檔案及目錄的一些特殊屬性

wisdomone1發表於2013-06-05

[root@rhel5 ~]# touch /nbfile
[root@rhel5 ~]# ls -l /nbfile
-rw-r--r-- 1 root root 0 Jun  5 02:57 /nbfile
--chattr命令簡介
[root@rhel5 ~]# chattr --help
Usage: chattr [-RV] [-+=AacDdijsSu] [-v version] files...

-- i屬性即不能對此檔案進行增加,修改,刪除
[root@rhel5 ~]# chattr +i /nbfile

--刪除報錯了
[root@rhel5 ~]# rm /nbfile
rm: remove write-protected regular empty file `/nbfile'? y
rm: cannot remove `/nbfile': Operation not permitted
[root@rhel5 ~]# ls -l /nbfile
-rw-r--r-- 1 root root 0 Jun  5 02:57 /nbfile

--具體chattr命令用法
man chattr

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

相關文章