符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
给大家分享一些云计算学习路线课程大纲资料,这篇文章是关于文件属性 chattr的一些资料,希望能给大家一些帮助:
创新互联建站长期为上1000+客户提供的网站建设服务,团队从业经验10年,关注不同地域、不同群体,并针对不同对象提供差异化的产品和服务;打造开放共赢平台,与合作伙伴共同营造健康的互联网生态环境。为永顺企业提供专业的网站设计制作、网站建设,永顺网站改版等技术服务。拥有10余年丰富建站经验和众多成功案例,为您定制开发。
文件权限管理之: 文件属性
注:设置文件属性(权限),针对所有用户,包括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