时间:2014-12-30 15:59:19 作者:qipeng 来源:系统之家 1. 扫描二维码随时看资讯 2. 请使用手机浏览器访问: https://m.xitongzhijia.net/xtjc/20141230/33739.html 手机查看 评论 反馈
实例4:使用“=”设置权限
命令:
代码如下:
chmod u=x log2012.log
输出:
代码如下:
[root@localhost test]# ls -al log2012.log
-rw-rw-r-- 1 root root 302108 11-13 06:03 log2012.log
[root@localhost test]# chmod u=x log2012.log
[root@localhost test]# ls -al log2012.log
---xrw-r-- 1 root root 302108 11-13 06:03 log2012.log
说明:
撤销原来所有的权限,然后使拥有者具有可读权限
实例5:对一个目录及其子目录所有文件添加权限
命令:
代码如下:
chmod -R u+x test4
输出:
代码如下:
[root@localhost test]# cd test4
[root@localhost test4]# ls -al
总计 312drwxrwxr-x 2 root root 4096 11-13 05:50 。
drwxr-xr-x 5 root root 4096 11-22 06:58 。。
-rw-r--r-- 1 root root 302108 11-12 22:54 log2012.log
-rw-r--r-- 1 root root 61 11-12 22:54 log2013.log
-rw-r--r-- 1 root root 0 11-12 22:54 log2014.log
[root@localhost test4]# cd 。。
[root@localhost test]# chmod -R u+x test4
[root@localhost test]# cd test4
[root@localhost test4]# ls -al
总计 312drwxrwxr-x 2 root root 4096 11-13 05:50 。
drwxr-xr-x 5 root root 4096 11-22 06:58 。。
-rwxr--r-- 1 root root 302108 11-12 22:54 log2012.log
-rwxr--r-- 1 root root 61 11-12 22:54 log2013.log
-rwxr--r-- 1 root root 0 11-12 22:54 log2014.log
说明:
递归地给test4目录下所有文件和子目录的属主分配权限
其他一些实例:
1)。
命令:
代码如下:
chmod 751 file
说明:
给file的属主分配读、写、执行(7)的权限,给file的所在组分配读、执行(5)的权限,给其他用户分配执行(1)的权限
2)。
命令:
代码如下:
chmod u=rwx,g=rx,o=x file
说明:
上例的另一种形式
3)。
命令
代码如下:
chmod =r file
说明:
为所有用户分配读权限
3)。
命令:
代码如下:
chmod 444 file
说明:
同上例
4)。
命令:
代码如下:
chmod a-wx,a+r file
说明:
同上例
上面就是系统之家的小编给你带来的Linux中chomd命令的用法介绍,chomd命令可以同时修改不同用户的权限、删除用户的权限等。
发表评论
共0条
评论就这些咯,让大家也知道你的独特见解
立即评论以上留言仅代表用户个人观点,不代表系统之家立场