在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
chattr 复制代码 代码如下:[root@localhost ~]# chattr +i nginx.conf #设置该文件不能进行任何形势的修改 [root@localhost ~]# mv nginx.conf nginx.conf_bak mv: 无法将"nginx.conf" 移动至"nginx.conf_bak": 不允许的操作 [root@localhost ~]# lsattr nginx.conf #查看chattr设置的权限 ----i--------e- nginx.conf [root@localhost ~]# chattr -i nginx.conf #取消-i的权限设置 [root@localhost ~]# lsattr nginx.conf #查看chattr设置的权限 -------------e- nginx.conf lsattr 复制代码 代码如下:[root@localhost ~]# chattr +i nginx.conf #设置该文件不能进行任何形势的修改 [root@localhost ~]# mv nginx.conf nginx.conf_bak mv: 无法将"nginx.conf" 移动至"nginx.conf_bak": 不允许的操作 [root@localhost ~]# lsattr nginx.conf #查看chattr设置的权限 ----i--------e- nginx.conf [root@localhost ~]# chattr -i nginx.conf #取消-i的权限设置 [root@localhost ~]# lsattr nginx.conf #查看chattr设置的权限 -------------e- nginx.conf |
请发表评论