linux文件权限管理
chmod命令:改变目录或文件的权限
chmod - change file access permissions
命令格式:chmod {u|g|o}{+|-|=}{r|w|x} 文件名或目录名大括号里面的参数表示必选参数竖线隔开表示必选其中一个或多个。
chmod的用法:
u、g、o分表表示的是文件的所有者、所属组的用户、其他用户
+、-、= 分别表示 增加权限、删除权限、设置权限不考虑原来
r、w、x 分别表示读、写、可执行三个权限。
例1,给文件所有者添加可执行权限:
复制代码 代码示例:
[root@jbxue etc]# ls -l hosts
-rw<span style="color: #ff0000;">-</span>r--r-x 3 root root 0 07-22 12:07 hosts
[root@jbxue etc]# <span style="color: #ff0000;">chmod u+x hosts
</span>[root@jbxue etc]# ls -l hosts
-rw<span style="color: #ff0000;">x</span>r--r-x 3 root root 0 07-22 12:07 hosts
[root@jbxue etc]#
例2,给文件所有者删除可写的权限:
复制代码 代码示例:
[root@jbxue etc]# ls -l hosts
-rw<span style="color: #ff0000;">x</span>r--r-x 3 root root 0 07-22 12:07 hosts
[root@jbxue etc]# chmod u-x hosts
[root@jbxue etc]# ls -l hosts
-rw<span style="color: #ff0000;">-</span>r--r-x 3 root root 0 07-22 12:07 hosts
[root@jbxue etc]#
例3,给同组用户增加可读写权限:
复制代码 代码示例:
[root@jbxue etc]# ls -l hosts
-rw-r--r-x 3 root root 0 07-22 12:07 hosts
[root@jbxue etc]# chmod g+rw hosts
[root@jbxue etc]# ls -l hosts
-rw-rw-r-x 3 root root 0 07-22 12:07 hosts
[root@jbxue etc]#
例4,给其他用户增加可执行权限:
复制代码 代码示例:
[root@jbxue etc]# ls -l hosts
-rw-rw-r-- 3 root root 0 07-22 12:07 hosts
[root@jbxue etc]# chmod o+x hosts
[root@jbxue etc]# ls -l hosts
-rw-rw-r-x 3 root root 0 07-22 12:07 hosts
[root@jbxue etc]#
例5,给其他用户和组用户删除可执行权限:
复制代码 代码示例:
[root@jbxue etc]# ls -l hosts
-rw-rw-r-x 3 root root 0 07-22 12:07 hosts
[root@jbxue etc]# chmod go-x hosts
[root@jbxue etc]# ls -l hosts
-rw-rw-r-- 3 root root 0 07-22 12:07 hosts
[root@jbxue etc]#
chmod数字的操作方式:(www.jb200.com 脚本学堂 整理)
以上是使用xwr和ugo来表示权限的,还有一种用数字来表示的方式:
其中rwx分别由数字4、2、1 来表示一组权限的数字加起来占一位,比如下面的权限
-rwxr--r-- 的数字表示为744 是因为所有者的rwx加起来是7 组和其他用户是4 再举几个例子
-rw-rw-rw-的数字表示为:666.
复制代码 代码示例:
[root@jbxue etc]# chmod 752 hosts
[root@jbxue etc]# ls -l hosts
-rwxr-x-w- 3 root root 0 07-22 12:07 hosts
[root@jbxue etc]# chmod 7 hosts
[root@jbxue etc]# ls -l hosts
-------rwx 3 root root 0 07-22 12:07 hosts
[root@jbxue etc]# chmod 777 hosts
[root@jbxue etc]# ls -l hosts
-rwxrwxrwx 3 root root 0 07-22 12:07 hosts
[root@jbxue etc]#
注意事项:
如果数字到三位则会从后面开始匹配,比如只有一个7 则表示给其他用户赋权限而所有者和组则使用0。
该方法比用字母更常用。因为很多官方文档和脚本用这个。