給大家分享一些云計算學(xué)習(xí)路線課程大綱資料,這篇文章是關(guān)于文件屬性 chattr的一些資料,希望能給大家一些幫助:
創(chuàng)新互聯(lián)是一家集網(wǎng)站建設(shè),鹽湖企業(yè)網(wǎng)站建設(shè),鹽湖品牌網(wǎng)站建設(shè),網(wǎng)站定制,鹽湖網(wǎng)站建設(shè)報價,網(wǎng)絡(luò)營銷,網(wǎng)絡(luò)優(yōu)化,鹽湖網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競爭力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時我們時刻保持專業(yè)、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實用型網(wǎng)站。文件權(quán)限管理之: 文件屬性
注:設(shè)置文件屬性(權(quán)限),針對所有用戶,包括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