|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
欢迎大家来到仓酷云论坛!在我任务中的某一天履行了chmod-R777/home后我非常懊悔,这下不晓得该怎样办?心外面很是焦急。此时心血来潮问了一下谷哥,终究找到了办法处理此成绩,不外条件是要本身做了文件权限备份任务,如今我就给人人讲授一下我处置的进程:
1.明天我就用/home/tong目次做试验,检查/home/tong目次和文件现有的权限
[root@redhat1home]#ll/home/tong/
total0
-rw-r--r--.1rootroot0Dec409:451.txt
-rw-r--r--.1rootroot0Dec409:452.txt
2.备份/home/tong目次用目次下的文件权限(留意不要在要备份的目次下停止此敕令,最好是在目次的上一级停止操作,写绝对路径)
[root@redhat1~]#cd/home/
[root@redhat1home]#getfacl-Rtong/>11.bak--将文件权限备份并保留到一个文件中
getfacl:Removingleading/fromabsolutepathnames
[root@redhat1home]#
3.修正目次权限并检查权限能否修正
[root@redhat1home]#chmod-R777tong/--修正目次及文件权限
[root@redhat1home]#ll/home/tong/--检查文件权限
total0
-rwxrwxrwx.1rootroot0Dec409:451.txt
-rwxrwxrwx.1rootroot0Dec409:452.txt
[root@redhat1home]#
4.复原目次和文件权限
[root@redhat1home]#setfacl--restore=11.bak--复原目次及文件权限
[root@redhat1home]#lltong/--胜利了,也祝人人胜利
total0
-rw-r--r--.1rootroot0Dec410:161.txt
-rw-r--r--.1rootroot0Dec410:162.txt
[root@redhat1home]#
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的小伙伴们! |
|