大家好,又见面了,我是你们的朋友全栈君。
话不多说,先了解一下文件的权限阶段:
整个权限描述分为4段
第一段用于描述该文件的类型,可以是常规文件(-)、目录(d)、块设备(b)、链接(l)和字符设备(c)等等
后面三段是文件具体的权限描述信息了,分别是文件主权限、组用户权限和其它用户(UGO)的权限。通过上述三段的组合就可以实现比较复杂的权限控制。比如允许某个用户的文件可以被其它用户读,但是不可以改写和执行等等
RWX解读如下:
依照上面的表格,权限组合就是对应权限值求和,如下:
依照上面的表格,权限组合就是对应权限值求和,如下:
7 = 4 + 2 + 1 读写运行权限
5 = 4 + 1 读和运行权限4 = 4 只读权限
因此,大家也就明白了 chmod 754 filename 命令的含义了
1、新增一个文件test.txt,并该文件对任何人都没有任何权限:
root@lhb:~# chmod u=,g=,o= test.txt
root@lhb:~# ls -l test.txt
———- 1 root root 0 Nov 30 14:59 test.txt
2、增加属主的rwx权限
root@lhb:~# chmod u=rwx test.txt
root@lhb:~# ls -l test.txt
-rwx—— 1 root root 0 Nov 30 14:59 test.txt
3、增加数组的rwx权限
root@lhb:~# chmod g=rwx test.txt
—-rwx— 1 root root 0 Nov 30 14:59 test.txt
4、增加其他用户的rwx权限
root@lhb:~# chmod o=rwx test.txt
——-rwx 1 root root 0 Nov 30 14:59 test.txt
5、增加所有用户的rwx权限
root@lhb:~# chmod u=rwx,g=rwx,o=rwx test.txt
root@lhb:~# ls -l test.txt
-rwxrwxrwx 1 root root 0 Nov 30 14:59 test.txt
如果使用阿拉伯数组表示的话,对应的:r=4,w=2,x=1
如果单独增加或修改某一权限,可以使用:
chmod | u g o a |
+(加入) -(除去) =(设定) |
r w x |
文件或目录 |
Example:
给文件增加X权限:
root@lhb:~# ls -l test.txt
———- 1 root root 0 Nov 30 14:59 test.txt
root@lhb:~# chmod u+x test.txt
root@lhb:~# ls -l test.txt
—x—— 1 root root 0 Nov 30 14:59 test.txt
去掉文件的执行权限:
root@lhb:~# chmod u-x test.txt
root@lhb:~# ls -l test.txt
———- 1 root root 0 Nov 30 14:59 test.txt
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/142824.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...