雲端計算學習路線課程大綱資料:檔案屬性 chattr

千鋒雲端計算發表於2019-08-12

給大家分享一些雲端計算學習路線課程大綱資料,這篇文章是關於檔案屬性 chattr的一些資料,希望能給大家一些幫助:

雲端計算學習路線課程大綱資料:檔案屬性 chattr

檔案許可權管理之: 檔案屬性

注:設定檔案屬性(許可權),針對所有使用者,包括root

[root@tianyun ~]# touch file100 file200

[root@tianyun ~]# lsattr file100 file200

-------------e- file100

-------------e- file200

[root@tianyun ~]# man chattr att屬性

[root@tianyun ~]# chattr +a file100

[root@tianyun ~]# chattr +i file200

[root@tianyun ~]# lsattr file100 file200

-----a-------e- file100 a屬只能夠追加 不可以寫

----i--------e- file200

[root@tianyun ~]# echo 111 > file100 //以覆蓋的方式寫入 

bash: file100: Operation not permitted

[root@tianyun ~]# rm -rf file100

rm: cannot remove `file100': Operation not permitted

[root@tianyun ~]# echo 111 >> file100 //以追加的方式寫入,例如日誌檔案 適用於日誌

[root@tianyun ~]# echo 111 > file200 i 屬性 不可以改變檔案 適用於 /etc/suders /passwd 檔案只能看

bash: file200: Permission denied

[root@instructor ~]# echo 111 >> file200

bash: file200: Permission denied

[root@tianyun ~]# rm -rf file200

rm: cannot remove `file200': Operation not permitted

[root@tianyun ~]# chattr -a file100

[root@tianyun ~]# chattr -i file200


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

相關文章