linux檔案系統的隱藏許可權

regonly1發表於2009-01-23

Linux系統裡,有種許可權可以使即使是root使用者也不能刪除的檔案的屬性的設定方法。
這是一個命令對:chattr(改變檔案屬性)/lsattr(顯示檔案屬性)
基本用法:
chattr
+:增加某個屬性;
-:刪除某個屬性;
舉例如下:
[root@bss-test6 lyon]# touch tfile
[root@bss-test6 lyon]# chattr +i tfile
[root@bss-test6 lyon]# rm -f tfile
rm: 無法刪除‘tfile’: 不允許的操作
[root@bss-test6 lyon]# chattr -i tfile
[root@bss-test6 lyon]# rm -fv tfile
已刪除‘tfile’

顯示該屬性的設定情況:
[root@bss-test6 lyon]# touch tfile
[root@bss-test6 lyon]# chattr +i tfile
[root@bss-test6 lyon]# lsattr tfile
----i-------- tfile
[root@bss-test6 lyon]# chattr -i tfile
[root@bss-test6 lyon]# lsattr tfile
------------- tfile

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

相關文章