欢迎光临
我们一直在努力

Linux 文件基本属性

Linux 文件基本属性

Linux 系统是一种典型的多用户系统,不同的用户处于不同的地位,拥有不同的权限。

为了保护系统的安全性,Linux 系统对不同的用户访问同一文件(包括目录文件)的权限做了不同的规定。

在 Linux 中我们通常使用以下两个命令来修改文件或目录的所属用户与权限:

  • chown (change owner) : 修改所属用户与组。
  • chmod (change mode) : 修改用户的权限。

下图中通过 chown 来授权用户,通过 chmod 为用户设置可以开门的权限。

在 Linux 中我们可以使用 ll 或者 ls –l 命令来显示一个文件的属性以及文件所属的用户和组,如:

[root@www /]# ls -l
total 64
dr-xr-xr-x 2 root root 4096 Dec 14 2012 bin
dr-xr-xr-x 4 root root 4096 Apr 19 2012 boot
……

实例中,bin 文件的第一个属性用 d 表示。d 在 Linux 中代表该文件是一个目录文件。

在 Linux 中第一个字符代表这个文件是目录、文件或链接文件等等。

  • 当为 d 则是目录
  • 当为 – 则是文件;
  • 若是 l 则表示为链接文档(link file);
  • 若是 b 则表示为装置文件里面的可供储存的接口设备(可随机存取装置);
  • 若是 c 则表示为装置文件里面的串行端口设备,例如键盘、鼠标(一次性读取装置)。

接下来的字符中,以三个为一组,且均为 rwx 的三个参数的组合。其中, r 代表可读(read)、 w 代表可写(write)、 x 代表可执行(execute)。 要注意的是,这三个权限的位置不会改变,如果没有权限,就会出现减号 – 而已。

每个文件的属性由左边第一部分的 10 个字符来确定(如下图)。

363003_1227493859FdXT

从左至右用 0-9 这些数字来表示。

第 0 位确定文件类型,第 1-3 位确定属主(该文件的所有者)拥有该文件的权限。

第4-6位确定属组(所有者的同组用户)拥有该文件的权限,第7-9位确定其他用户拥有该文件的权限。

其中,第 1、4、7 位表示读权限,如果用 r 字符表示,则有读权限,如果用 – 字符表示,则没有读权限;

第 2、5、8 位表示写权限,如果用 w 字符表示,则有写权限,如果用 – 字符表示没有写权限;第 3、6、9 位表示可执行权限,如果用 x 字符表示,则有执行权限,如果用 – 字符表示,则没有执行权限。


Linux文件属主和属组

[root@www /]# ls -l
total 64
drwxr-xr-x 2 root root 4096 Feb 15 14:46 cron
drwxr-xr-x 3 mysql mysql 4096 Apr 21 2014 mysql
……

对于文件来说,它都有一个特定的所有者,也就是对该文件具有所有权的用户。

同时,在Linux系统中,用户是按组分类的,一个用户属于一个或多个组。

文件所有者以外的用户又可以分为文件所属组的同组用户和其他用户。

因此,Linux系统按文件所有者、文件所有者同组用户和其他用户来规定了不同的文件访问权限。

在以上实例中,mysql 文件是一个目录文件,属主和属组都为 mysql,属主有可读、可写、可执行的权限;与属主同组的其他用户有可读和可执行的权限;其他用户也有可读和可执行的权限。

对于 root 用户来说,一般情况下,文件的权限对其不起作用。


更改文件属性

1、chgrp:更改文件属组

语法:

chgrp [-R] 属组名 文件名

参数选项

  • -R:递归更改文件属组,就是在更改某个目录文件的属组时,如果加上 -R 的参数,那么该目录下的所有文件的属组都会更改。

2、chown:更改文件所有者(owner),也可以同时更改文件所属组。

语法:

chown [–R] 所有者 文件名
chown [-R] 所有者:属组名 文件名

进入 /root 目录(~)将install.log的拥有者改为bin这个账号:

[root@www ~] cd ~
[root@www ~]# chown bin install.log
[root@www ~]# ls -l
-rw-r–r– 1 bin users 68495 Jun 25 08:53 install.log

将install.log的拥有者与群组改回为root:

[root@www ~]# chown root:root install.log
[root@www ~]# ls -l
-rw-r–r– 1 root root 68495 Jun 25 08:53 install.log

3、chmod:更改文件9个属性

Linux文件属性有两种设置方法,一种是数字,一种是符号。

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。变更权限的指令 chmod 的语法是这样的:

chmod [-R] xyz 文件或目录

https://avg.163.com/topic/detail/9754915
https://avg.163.com/topic/detail/9754903
https://avg.163.com/topic/detail/9754908
https://avg.163.com/topic/detail/9754855
https://avg.163.com/topic/detail/9754848
https://avg.163.com/topic/detail/9754802
https://avg.163.com/topic/detail/9754798
https://avg.163.com/topic/detail/9754790
https://avg.163.com/topic/detail/9754792
https://avg.163.com/topic/detail/9754780
https://avg.163.com/topic/detail/9754757
https://avg.163.com/topic/detail/9754753
https://avg.163.com/topic/detail/9754717
https://avg.163.com/topic/detail/9754658
https://avg.163.com/topic/detail/9754646
https://avg.163.com/topic/detail/9754566
https://avg.163.com/topic/detail/9754575
https://avg.163.com/topic/detail/9754519
https://avg.163.com/topic/detail/9754520
https://avg.163.com/topic/detail/9752482
https://avg.163.com/topic/detail/9754431
https://avg.163.com/topic/detail/9754425
https://avg.163.com/topic/detail/9754418
https://avg.163.com/topic/detail/9754406
https://avg.163.com/topic/detail/9754392
https://avg.163.com/topic/detail/9754324
https://avg.163.com/topic/detail/9754289
https://avg.163.com/topic/detail/9754262
https://avg.163.com/topic/detail/9754255
https://avg.163.com/topic/detail/9754219
https://avg.163.com/topic/detail/9753518
https://avg.163.com/topic/detail/9754182
https://avg.163.com/topic/detail/9754177
https://avg.163.com/topic/detail/9754146
https://avg.163.com/topic/detail/9754111
https://avg.163.com/topic/detail/9754100
https://avg.163.com/topic/detail/9754094
https://avg.163.com/topic/detail/9754088
https://avg.163.com/topic/detail/9754083
https://avg.163.com/topic/detail/9754059
https://avg.163.com/topic/detail/9754043
https://avg.163.com/topic/detail/9752890
https://avg.163.com/topic/detail/9754001
https://avg.163.com/topic/detail/9753973
https://avg.163.com/topic/detail/9753968
https://avg.163.com/topic/detail/9753956
https://avg.163.com/topic/detail/9753949
https://avg.163.com/topic/detail/9753908
https://avg.163.com/topic/detail/9753894
https://avg.163.com/topic/detail/9749764
https://avg.163.com/topic/detail/9753877
https://avg.163.com/topic/detail/9753855
https://avg.163.com/topic/detail/9753849
https://avg.163.com/topic/detail/9753821
https://avg.163.com/topic/detail/9753805
https://avg.163.com/topic/detail/9753780
https://avg.163.com/topic/detail/9752375
https://avg.163.com/topic/detail/9753751
https://avg.163.com/topic/detail/9752744
https://avg.163.com/topic/detail/9753731
https://avg.163.com/topic/detail/9753707
https://avg.163.com/topic/detail/9753670
https://avg.163.com/topic/detail/9753605
https://avg.163.com/topic/detail/9753578
https://avg.163.com/topic/detail/9753571
https://avg.163.com/topic/detail/9753537
https://avg.163.com/topic/detail/9753518
https://avg.163.com/topic/detail/9753465
https://avg.163.com/topic/detail/9753509
https://avg.163.com/topic/detail/9753493
https://avg.163.com/topic/detail/9753486
https://avg.163.com/topic/detail/9753438
https://avg.163.com/topic/detail/9753433
https://avg.163.com/topic/detail/9753430
https://avg.163.com/topic/detail/9752763
https://avg.163.com/topic/detail/9753388
https://avg.163.com/topic/detail/9753364
https://avg.163.com/topic/detail/9753344
https://avg.163.com/topic/detail/9753358
https://avg.163.com/topic/detail/9753347
https://avg.163.com/topic/detail/9753323
https://avg.163.com/topic/detail/9753335
https://avg.163.com/topic/detail/9753326
https://avg.163.com/topic/detail/9753241
https://avg.163.com/topic/detail/9753231
https://avg.163.com/topic/detail/9753190
https://avg.163.com/topic/detail/9753183
https://avg.163.com/topic/detail/9753131
https://avg.163.com/topic/detail/9753128
https://avg.163.com/topic/detail/9753102
https://avg.163.com/topic/detail/9753081
https://avg.163.com/topic/detail/9753016
https://avg.163.com/topic/detail/9753004
https://avg.163.com/topic/detail/9752999
https://avg.163.com/topic/detail/9752967
https://avg.163.com/topic/detail/9752916
https://avg.163.com/topic/detail/9752902
https://avg.163.com/topic/detail/9752890
https://avg.163.com/topic/detail/9752880
https://avg.163.com/topic/detail/9752870
https://avg.163.com/topic/detail/9752842
https://avg.163.com/topic/detail/9752843
https://avg.163.com/topic/detail/9752767
https://avg.163.com/topic/detail/9752765
https://avg.163.com/topic/detail/9752761
https://avg.163.com/topic/detail/9749724
https://avg.163.com/topic/detail/9748143
https://avg.163.com/topic/detail/9752760
https://avg.163.com/topic/detail/9752762
https://avg.163.com/topic/detail/9752763
https://avg.163.com/topic/detail/9752757
https://avg.163.com/topic/detail/9749764
https://avg.163.com/topic/detail/9752754
https://avg.163.com/topic/detail/9752747
https://avg.163.com/topic/detail/9751594
https://avg.163.com/topic/detail/9752744
https://avg.163.com/topic/detail/9752741
https://avg.163.com/topic/detail/9752737
https://avg.163.com/topic/detail/9752735
https://avg.163.com/topic/detail/9752734
https://avg.163.com/topic/detail/9752712
https://avg.163.com/topic/detail/9752675
https://avg.163.com/topic/detail/9752666
https://avg.163.com/topic/detail/9752641
https://avg.163.com/topic/detail/9752634
https://avg.163.com/topic/detail/9752580
https://avg.163.com/topic/detail/9752548
https://avg.163.com/topic/detail/9752544
https://avg.163.com/topic/detail/9752535
https://avg.163.com/topic/detail/9752518
https://avg.163.com/topic/detail/9752482
https://avg.163.com/topic/detail/9752449
https://avg.163.com/topic/detail/9752430
https://avg.163.com/topic/detail/9752442
https://avg.163.com/topic/detail/9752427
https://avg.163.com/topic/detail/9752375
https://avg.163.com/topic/detail/9752317
https://avg.163.com/topic/detail/9752316
https://avg.163.com/topic/detail/9752302
https://avg.163.com/topic/detail/9752280
https://avg.163.com/topic/detail/9752213
https://avg.163.com/topic/detail/9752233
https://avg.163.com/topic/detail/9752212
https://avg.163.com/topic/detail/9752218
https://avg.163.com/topic/detail/9752188
https://avg.163.com/topic/detail/9752198
https://avg.163.com/topic/detail/9752167
https://avg.163.com/topic/detail/9752160
https://avg.163.com/topic/detail/9751602
https://avg.163.com/topic/detail/9751594
https://avg.163.com/topic/detail/9751579
https://avg.163.com/topic/detail/9751567
https://avg.163.com/topic/detail/9751548
https://avg.163.com/topic/detail/9751526
https://avg.163.com/topic/detail/9751522
https://avg.163.com/topic/detail/9751449
https://avg.163.com/topic/detail/9751437
https://avg.163.com/topic/detail/9751383
https://avg.163.com/topic/detail/9751379
https://avg.163.com/topic/detail/9751321
https://avg.163.com/topic/detail/9751303
https://avg.163.com/topic/detail/9751285
https://avg.163.com/topic/detail/9751246
https://avg.163.com/topic/detail/9748803
https://avg.163.com/topic/detail/9751227
https://avg.163.com/topic/detail/9751206
https://avg.163.com/topic/detail/9751202
https://avg.163.com/topic/detail/9751178
https://avg.163.com/topic/detail/9751152
https://avg.163.com/topic/detail/9751119
https://avg.163.com/topic/detail/9751112
https://avg.163.com/topic/detail/9751092
https://avg.163.com/topic/detail/9751090
https://avg.163.com/topic/detail/9751051
https://avg.163.com/topic/detail/9751012
https://avg.163.com/topic/detail/9751005
https://avg.163.com/topic/detail/9750982
https://avg.163.com/topic/detail/9750963
https://avg.163.com/topic/detail/9750958
https://avg.163.com/topic/detail/9750950
https://avg.163.com/topic/detail/9750889
https://avg.163.com/topic/detail/9750882
https://avg.163.com/topic/detail/9750871
https://avg.163.com/topic/detail/9750840
https://avg.163.com/topic/detail/9750815
https://avg.163.com/topic/detail/9748825
https://avg.163.com/topic/detail/9750793
https://avg.163.com/topic/detail/9750783
https://avg.163.com/topic/detail/9750776
https://avg.163.com/topic/detail/9750697
https://avg.163.com/topic/detail/9750624
https://avg.163.com/topic/detail/9750600
https://avg.163.com/topic/detail/9750390
https://avg.163.com/topic/detail/9750248
https://avg.163.com/topic/detail/9747912
https://avg.163.com/topic/detail/9750183
https://avg.163.com/topic/detail/9750182
https://avg.163.com/topic/detail/9750090
https://avg.163.com/topic/detail/9747675
https://avg.163.com/topic/detail/9747214
https://avg.163.com/topic/detail/9748478
https://avg.163.com/topic/detail/9749901
https://avg.163.com/topic/detail/9749824
https://avg.163.com/topic/detail/9749764
https://avg.163.com/topic/detail/9748108
https://avg.163.com/topic/detail/9749315
https://avg.163.com/topic/detail/9749142
https://avg.163.com/topic/detail/9749064
https://avg.163.com/topic/detail/9749041
https://avg.163.com/topic/detail/9749036
https://avg.163.com/topic/detail/9748997
https://avg.163.com/topic/detail/9748976
https://avg.163.com/topic/detail/9748977
https://avg.163.com/topic/detail/9748961
https://avg.163.com/topic/detail/9748946
https://avg.163.com/topic/detail/9748937
https://avg.163.com/topic/detail/9748943
https://avg.163.com/topic/detail/9748889
https://avg.163.com/topic/detail/9748875
https://avg.163.com/topic/detail/9748840
https://avg.163.com/topic/detail/9748825
https://avg.163.com/topic/detail/9748809
https://avg.163.com/topic/detail/9748803
https://avg.163.com/topic/detail/9748788
https://avg.163.com/topic/detail/9748747
https://avg.163.com/topic/detail/9748707
https://avg.163.com/topic/detail/9748703
https://avg.163.com/topic/detail/9748686
https://avg.163.com/topic/detail/9748673
https://avg.163.com/topic/detail/9748629
https://avg.163.com/topic/detail/9748595
https://avg.163.com/topic/detail/9748535
https://avg.163.com/topic/detail/9748530
https://avg.163.com/topic/detail/9748495
https://avg.163.com/topic/detail/9748478
https://avg.163.com/topic/detail/9748475
https://avg.163.com/topic/detail/9748464
https://avg.163.com/topic/detail/9748449
https://avg.163.com/topic/detail/9748444
https://avg.163.com/topic/detail/9748418
https://avg.163.com/topic/detail/9748340
https://avg.163.com/topic/detail/9748143
https://avg.163.com/topic/detail/9748108
https://avg.163.com/topic/detail/9748065
https://avg.163.com/topic/detail/9747916
https://avg.163.com/topic/detail/9747912
https://avg.163.com/topic/detail/9747909
https://avg.163.com/topic/detail/9747906
https://avg.163.com/topic/detail/9747894
https://avg.163.com/topic/detail/9747874
https://avg.163.com/topic/detail/9747873
https://avg.163.com/topic/detail/9747866
https://avg.163.com/topic/detail/9747845
https://avg.163.com/topic/detail/9747846
https://avg.163.com/topic/detail/9747808
https://avg.163.com/topic/detail/9747746
https://avg.163.com/topic/detail/9747635
https://avg.163.com/topic/detail/9747497
https://avg.163.com/topic/detail/9747214
https://avg.163.com/topic/detail/9747199
https://avg.163.com/topic/detail/9747112
https://avg.163.com/topic/detail/9747064
https://avg.163.com/topic/detail/9747012
https://avg.163.com/topic/detail/9746860
https://avg.163.com/topic/detail/9746753
https://avg.163.com/topic/detail/9746745
https://avg.163.com/topic/detail/9746681
https://avg.163.com/topic/detail/9746673
https://avg.163.com/topic/detail/9746657
https://avg.163.com/topic/detail/9746602
https://avg.163.com/topic/detail/9746480
https://avg.163.com/topic/detail/9746248
https://avg.163.com/topic/detail/9746403
https://avg.163.com/topic/detail/9746364
https://avg.163.com/topic/detail/9746245
https://avg.163.com/topic/detail/9746193
https://avg.163.com/topic/detail/9746141
https://avg.163.com/topic/detail/9746079
https://avg.163.com/topic/detail/9745594
https://avg.163.com/topic/detail/9746014
https://avg.163.com/topic/detail/9745942
https://avg.163.com/topic/detail/9743613
https://avg.163.com/topic/detail/9745569
https://avg.163.com/topic/detail/9745585
https://avg.163.com/topic/detail/9745594
https://avg.163.com/topic/detail/9745542
https://avg.163.com/topic/detail/9744536
https://avg.163.com/topic/detail/9745454
https://avg.163.com/topic/detail/9745420
https://avg.163.com/topic/detail/9745399
https://avg.163.com/topic/detail/9744536
https://avg.163.com/topic/detail/9743613
https://avg.163.com/topic/detail/9743613
https://avg.163.com/topic/detail/9743010
https://avg.163.com/topic/detail/9743008
https://avg.163.com/topic/detail/9743080
https://avg.163.com/topic/detail/9742999
https://avg.163.com/topic/detail/9742974
https://avg.163.com/topic/detail/9743211
https://avg.163.com/topic/detail/9743067
https://avg.163.com/topic/detail/9743192
https://avg.163.com/topic/detail/9743000
https://avg.163.com/topic/detail/9743080
https://avg.163.com/topic/detail/9743016
https://avg.163.com/topic/detail/9742974
https://avg.163.com/topic/detail/9742999
https://avg.163.com/topic/detail/9742998
https://avg.163.com/topic/detail/9743000
https://avg.163.com/topic/detail/9743067
https://avg.163.com/topic/detail/9743010
https://avg.163.com/topic/detail/9743008
https://avg.163.com/topic/detail/9742977
https://avg.163.com/topic/detail/9743080
https://avg.163.com/topic/detail/9743056
https://avg.163.com/topic/detail/9743036
https://avg.163.com/topic/detail/9743016
https://avg.163.com/topic/detail/9743013
https://avg.163.com/topic/detail/9743008
https://avg.163.com/topic/detail/9743010
https://avg.163.com/topic/detail/9743000
https://avg.163.com/topic/detail/9742998
https://avg.163.com/topic/detail/9742999
https://avg.163.com/topic/detail/9742982
https://avg.163.com/topic/detail/9742977
https://avg.163.com/topic/detail/9742974
https://avg.163.com/topic/detail/9742972
https://avg.163.com/topic/detail/9742971
https://avg.163.com/topic/detail/9742958
https://avg.163.com/topic/detail/9742956
https://avg.163.com/topic/detail/9742951
https://avg.163.com/topic/detail/9742949
https://avg.163.com/topic/detail/9742934
https://avg.163.com/topic/detail/9742943
https://avg.163.com/topic/detail/9742944
https://avg.163.com/topic/detail/9742939
https://avg.163.com/topic/detail/9742928
https://avg.163.com/topic/detail/9742922
https://avg.163.com/topic/detail/9742920
https://avg.163.com/topic/detail/9742917
https://avg.163.com/topic/detail/9742915
https://avg.163.com/topic/detail/9742912
https://avg.163.com/topic/detail/9742900
https://avg.163.com/topic/detail/9742905
https://avg.163.com/topic/detail/9742901
https://avg.163.com/topic/detail/9742896
https://avg.163.com/topic/detail/9742893
https://avg.163.com/topic/detail/9742890
https://avg.163.com/topic/detail/9742888
https://avg.163.com/topic/detail/9742889
https://avg.163.com/topic/detail/9742884
https://avg.163.com/topic/detail/9742880
https://avg.163.com/topic/detail/9742876
https://avg.163.com/topic/detail/9742874
https://avg.163.com/topic/detail/9742872
https://avg.163.com/topic/detail/9742871
https://avg.163.com/topic/detail/9742864
https://avg.163.com/topic/detail/9742860
https://avg.163.com/topic/detail/9742861
https://avg.163.com/topic/detail/9742857
https://avg.163.com/topic/detail/9742854
https://avg.163.com/topic/detail/9742852
https://avg.163.com/topic/detail/9742849
https://avg.163.com/topic/detail/9756660
https://avg.163.com/topic/detail/9756641
https://avg.163.com/topic/detail/9756638
https://avg.163.com/topic/detail/9756624
https://avg.163.com/topic/detail/9756609
https://avg.163.com/topic/detail/9756585
https://avg.163.com/topic/detail/9756499
https://avg.163.com/topic/detail/9756497
https://avg.163.com/topic/detail/9756482
https://avg.163.com/topic/detail/9756483
https://avg.163.com/topic/detail/9756477
https://avg.163.com/topic/detail/9755529
https://avg.163.com/topic/detail/9755593
https://avg.163.com/topic/detail/9755427
https://avg.163.com/topic/detail/9756398
https://avg.163.com/topic/detail/9755348
https://avg.163.com/topic/detail/9756302
https://avg.163.com/topic/detail/9756291
https://avg.163.com/topic/detail/9756277
https://avg.163.com/topic/detail/9756258
https://avg.163.com/topic/detail/9756239
https://avg.163.com/topic/detail/9756236
https://avg.163.com/topic/detail/9756209
https://avg.163.com/topic/detail/9756199
https://avg.163.com/topic/detail/9756143
https://avg.163.com/topic/detail/9756138
https://avg.163.com/topic/detail/9756119
https://avg.163.com/topic/detail/9755934
https://avg.163.com/topic/detail/9755931
https://avg.163.com/topic/detail/9755916
https://avg.163.com/topic/detail/9755896
https://avg.163.com/topic/detail/9755859
https://avg.163.com/topic/detail/9755813
https://avg.163.com/topic/detail/9755798
https://avg.163.com/topic/detail/9755762
https://avg.163.com/topic/detail/9755755
https://avg.163.com/topic/detail/9755752
https://avg.163.com/topic/detail/9755717
https://avg.163.com/topic/detail/9755697
https://avg.163.com/topic/detail/9755699
https://avg.163.com/topic/detail/9755624
https://avg.163.com/topic/detail/9755593
https://avg.163.com/topic/detail/9755583
https://avg.163.com/topic/detail/9754915
https://avg.163.com/topic/detail/9755529
https://avg.163.com/topic/detail/9755525
https://avg.163.com/topic/detail/9755507
https://avg.163.com/topic/detail/9755499
https://avg.163.com/topic/detail/9755486
https://avg.163.com/topic/detail/9754425
https://avg.163.com/topic/detail/9755476
https://avg.163.com/topic/detail/9755427
https://avg.163.com/topic/detail/9755370
https://avg.163.com/topic/detail/9753956
https://avg.163.com/topic/detail/9754418
https://avg.163.com/topic/detail/9755328
https://avg.163.com/topic/detail/9755327
https://avg.163.com/topic/detail/9755295
https://avg.163.com/topic/detail/9755313
https://avg.163.com/topic/detail/9755312
https://avg.163.com/topic/detail/9755288
https://avg.163.com/topic/detail/9755274
https://avg.163.com/topic/detail/9755261
https://avg.163.com/topic/detail/9755226
https://avg.163.com/topic/detail/9755200
https://avg.163.com/topic/detail/9755191
https://avg.163.com/topic/detail/9755146
https://avg.163.com/topic/detail/9755172
https://avg.163.com/topic/detail/9755161
https://avg.163.com/topic/detail/9755119
https://avg.163.com/topic/detail/9755061
https://avg.163.com/topic/detail/9755058
https://avg.163.com/topic/detail/9755052
https://avg.163.com/topic/detail/9755041
https://avg.163.com/topic/detail/9755034
https://avg.163.com/topic/detail/9755024
https://avg.163.com/topic/detail/9755020
 

选项与参数:

  • xyz : 就是刚刚提到的数字类型的权限属性,为 rwx 属性数值的相加。
  • -R : 进行递归(recursive)的持续变更,以及连同次目录下的所有文件都会变更

举例来说,如果要将 .bashrc 这个文件所有的权限都设定启用,那么命令如下:

[root@www ~]# ls -al .bashrc
-rw-r–r– 1 root root 395 Jul 4 11:45 .bashrc
[root@www ~]# chmod 777 .bashrc
[root@www ~]# ls -al .bashrc
-rwxrwxrwx 1 root root 395 Jul 4 11:45 .bashrc

那如果要将权限变成 -rwxr-xr– 呢?那么权限的分数就成为 [4+2+1][4+0+1][4+0+0]=754。

符号类型改变文件权限

还有一个改变权限的方法,从之前的介绍中我们可以发现,基本上就九个权限分别是:

  • user:用户
  • group:组
  • others:其他

那么我们就可以使用 u, g, o 来代表三种身份的权限。

此外, a 则代表 all,即全部的身份。读写的权限可以写成 r, w, x,也就是可以使用下表的方式来看:

chmod u
g
o
a
+(加入)
-(除去)
=(设定)
r
w
x
文件或目录

如果我们需要将文件权限设置为 -rwxr-xr– ,可以使用 chmod u=rwx,g=rx,o=r 文件名 来设定:

# touch test1 // 创建 test1 文件
# ls -al test1 // 查看 test1 默认权限
-rw-r–r– 1 root root 0 Nov 15 10:32 test1
# chmod u=rwx,g=rx,o=r test1 // 修改 test1 权限
# ls -al test1
-rwxr-xr– 1 root root 0 Nov 15 10:32 test1

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

# chmod a-x test1
# ls -al test1
-rw-r–r– 1 root root 0 Nov 15 10:32 test1

赞(0)
未经允许不得转载:171主机测评 » Linux 文件基本属性
分享到: 更多 (0)

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址