1. chmod

档案权限的改变使用是的 chmod 这个指令

1.1. 命令格式

chmod [OPTION]... MODE[,MODE]... FILE...
or: chmod [OPTION]... OCTAL-MODE FILE...
or: chmod [OPTION]... --reference=RFILE FILE...

1.2. 命令功能

Change the mode of each FILE to MODE.

1.3. 命令参数

-R, --recursive常用进行递归的持续变更,即连同子目录下的所有档案、目录都变更。

operate on files and directories recursively

1.4. 权限的设定方法有

权限的设定方法有两种, 分别可以使用数字或者是符号来进行权限的变更。

1.4.1. 数字类型改变档案权限

Linux档案的基本权限就有九个,分别是 owner/group/others三种身份各有自己的 read/write/execute 权限, 档案的权限字符为:-rwxrwxrwx, 这九个权限是三个三个一组的!其中,我们可以使用 权限的分数对照表如下:

r:4
w:2
x:1

每种身份(owner/group/others)各自的三个权限(r/w/x)分数是需要累加的,例如当权限为:-rwxrwx--- 分数则是:

owner = rwx = 4+2+1 = 7
group = rwx = 4+2+1 = 7
others= --- = 0+0+0 = 0

所以等一下我们设定权限的变更时,该档案的权限数字就是770

example

把档案test.txt的权限全部开启。

要全部开启档案权限,即需要设置成·-rwxrwxrwx·,转换成数字权限即为777,设置过程如下:

[root@localhost wangyuchuan]# ll
-rw-rw-r--. 1 wangyuchuan wangyuchuan 0 Jan 10 19:48 test.txt
[root@localhost wangyuchuan]# chmod 777 test.txt 
[root@localhost wangyuchuan]# ll
-rwxrwxrwx. 1 wangyuchuan wangyuchuan 0 Jan 10 19:48 test.txt

1.4.2. 符号类型改变档案权限

从之前的介绍中我们可以发现,档案分别有user,group,other三种身份。 所以我们可以使用u,g,o来代表这三种身份的权限,此外使用a来代表all亦即全部的身份。 同样,读写执行的权限read,write,execute分别使用r,w,x来代替。

Each MODE is of the form [ugoa]*([-+=]([rwxXst]*|[ugo]))+

chmod [ugoa] [-+=] [rwxXst] FILE...
        u         +         r
chmod    g         -         w         FILE...
        o         =        x
        a

example

更改test.txt档案的权限为-rwxr--r--:

[root@localhost wangyuchuan]# chmod u=rwx,g=r,o=r test.txt 
[root@localhost wangyuchuan]# ll
-rwxr--r--. 1 wangyuchuan wangyuchuan 0 Jan 10 19:48 test.txt

u,g,o三者之间用,号分隔。

如果我不知道原先的文件属性,而我只想要增加test.txt这个档案的每个人均可 写入的权限:

root@localhost wangyuchuan]# chmod a+x test.txt 
[root@localhost wangyuchuan]# ll
-rwxr-xr-x. 1 wangyuchuan wangyuchuan 0 Jan 10 19:48 test.txt

而如果是要将权限去掉而不更动其他已存在的权限呢?例如要拿掉全部人的可执行权限:

root@localhost wangyuchuan]# chmod a-x test.txt 
[root@localhost wangyuchuan]# ll
-rw-r--r--. 1 wangyuchuan wangyuchuan 0 Jan 10 19:48 test.txt
Copyright © wychuan.com 2017 all right reserved,powered by Gitbook该文件修订时间: 2019-01-08 09:27:34

results matching ""

    No results matching ""