博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
文件和目录权限chmod,更改所有者和所属组chown,umask命令,
阅读量:6643 次
发布时间:2019-06-25

本文共 6171 字,大约阅读时间需要 20 分钟。

hot3.png

一、chmod更改文件和目录权限

  • 命令chmod(change mode简写)用于改变用户对文件/目录的读写执行权限;
    格式:chmod xyz 文件名 (xyz是数字)
[root@linux-128 tmp]# chmod 750 111[root@linux-128 tmp]# ls -ld 111drwxr-x--- 2 root root 6 10月 23 23:11 111
  • linux默认目录权限最高为777;默认文件权限最高为666

查看目录信息

[root@linux-128 tmp]# ls -ld 111drwxr-xr-x 2 root root 6 10月 23 23:11 111

前面文件属性的时候有讲到,文件或目录的详细信息分9段,第1段drwxr-xr-x包含文件的类型和所有者,所属组,其他用户对文件的权限;

  • r(read)可读
  • w(write)可写
  • x(executable)可执行
    r=4 w=2 x=1
    注意:目录必须有x权限,文件没有x权限

1. chmod //修改文件和目录的权限

[root@linux-128 tmp]# ls -ld 111drwxr-xr-x 2 root root 6 10月 23 23:11 111[root@linux-128 tmp]# chmod 750 111[root@linux-128 tmp]# ls -ld 111drwxr-x--- 2 root root 6 10月 23 23:11 111

2. chmod –R //联级更改,修改目录本身及目录下所有的子目录文件权限

[root@linux-128 tmp]# ls -l 222/1.txt  -ld 222/123	drwxr-xr-x 2 root root 6 10月 25 23:42 222/123-rw-r--r-- 1 root root 0 10月 25 23:42 222/1.txt[root@linux-128 tmp]# chmod 700 -R 222[root@linux-128 tmp]# ls -ld 222 -l 222/1.txt  -ld 222/123drwx------ 3 root root 30 10月 25 23:42 222drwx------ 2 root root  6 10月 25 23:42 222/123-rwx------ 1 root root  0 10月 25 23:42 222/1.txt

还有一种修改方法:

3. chmod a=rwx,g=rx,o=rx 文件名

  • u(user) 所有者
  • g(group)所属组
  • o(others)其他用户
[root@linux-128 tmp]# chmod u=rwx,g=rx,o=rx -R 222[root@linux-128 tmp]# ls -ld 222 -l 222/1.txt  -ld 222/123drwxr-xr-x 3 root root 30 10月 25 23:42 222drwxr-xr-x 2 root root  6 10月 25 23:42 222/123-rwxr-xr-x 1 root root  0 10月 25 23:42 222/1.txt
  • (all)全部
[root@linux-128 tmp]# chmod a-x -R 222[root@linux-128 tmp]# ls -ld 222 -l 222/1.txt  -ld 222/123drw-r--r-- 3 root root 30 10月 25 23:42 222drw-r--r-- 2 root root  6 10月 25 23:42 222/123-rw-r--r-- 1 root root  0 10月 25 23:42 222/1.txt

二、chown更改所有者和所属组

  • chown(change ownar)命令用来修改文件的所属主,所属组,其他用户
  • chown -R 作用于目录联级修改,目录本身和子目录文件。
[root@linux ~]# useradd user1              \\创建用户user1[root@linux ~]# groupadd group1            \\创建组  group1[root@linux ~]# chown user1:group1 5.txt   \\修改文件5.txt所属主为user1,所属组为group1[root@linux ~]# ls -l 5.txt-rw-r--r--. 1 user1 group1 78 10月 26 18:01 5.txt
chown user1 1.txt            \\修改属主chown user1:group1 1.txt    \\修改属主,属组chown user1.group1 1.txt     \\修改属主,属组chown :group1 1.txt         \\修改属组chown .group1 1.txt          \\修改属组
root@linux ~]# ls -l 1.txt-rw-r--r--. 1 root root 0 10月 26 19:44 1.txt[root@linux ~]# chown wzzhan 1.txt[root@linux ~]# !lsls -l 1.txt-rw-r--r--. 1 wzzhan root 0 10月 26 19:44 1.txt[root@linux ~]# chown :wzzhan 1.txt[root@linux ~]# !lsls -l 1.txt-rw-r--r--. 1 wzzhan wzzhan 0 10月 26 19:44 1.txt[root@linux ~]# chown root:root 1.txt[root@linux ~]# ls -l 1.txt-rw-r--r--. 1 root root 0 10月 26 19:44 1.txt[root@linux ~]# chown wzzhan.wzzhan 1.txt   \\chown也可以用点来隔开[root@linux ~]# !lsls -l 1.txt-rw-r--r--. 1 wzzhan wzzhan 0 10月 26 19:44 1.txt

  • chgrp 修改文件属组 chgrp group1 1.txt
    chgrp -R group1 111

  • !ls 表示命令历史中以ls开头离我问最经的一条命令
  • history 历史命令
[root@linux ~]# history   16  midir test   17  mkdir test   18  ls!18  !后面加上历史命令前面的序号也可以执行。[root@linux ~]# !18ls111.bak  222  4.txx  5.txt  6.txt  anaconda-ks.cfg  install.log.syslog  test1.txt    444  4.txy  666    777    install.log      prem

三、umask命令用于改变文件的默认权限

umask XXX(3个x表示数字)

umask 022

[root@linux ~]# umask0022

注意:通常只用到后面三位022 --- -w- -w-

  • 系统默认情况下目录权限值为755,文件权限为644,这个是有umask规定的
777  rwx rwx rwx        666  rw- rw- rw--022   --- -w- -w-        -022  --- -w- -w-  =      rwx r-x r-x                      rw- r-- r--=      7  5   5                          6   4   4

四、lsattr 查看文件的特殊属性

  1. lsattr -d 查看目录本身特殊属性
[root@linux-128 tmp]# lsattr 222---------------- 222/1.txt---------------- 222/123[root@linux-128 tmp]# chattr +i 222/1.txt[root@linux-128 tmp]# chattr +a 222/123/   1.txt  2.txt[root@linux-128 tmp]# chattr +a 222/123/[root@linux-128 tmp]# lsattr -d 222-----a---------- 222
  1. lsattr -R 联级,查看目录下子目录子文件的特殊属性
[root@linux-128 tmp]# lsattr -R 222----i----------- 222/1.txt-----a---------- 222/123222/123:---------------- 222/2.txt

五、chattr 增加删除设定特殊属性

  • chattr +a 增加后只能追加,不能删除或者直接更改它的内容,非root用户不能设置该属性
  • chattr +i 增加后不能做任何操作,不能添加,删除,重命名,设定链接,修改属主,属组。
  • chattr +A 增加后文件或者目录的atime将不可被修改
  • chattr +S 增加后会将数据同步写入磁盘中
  1. 例子1:给文件1.txt加上i权限,然后进行删除,修改、追加内容,修改文件属性,所有者,所属组。
[root@linux-128 tmp]# chattr +i 222/1.txt[root@linux-128 tmp]# lsattr 222/1.txt----i----------- 222/1.txt[root@linux-128 tmp]# rm 222/1.txtrm:是否删除普通空文件 "222/1.txt"?yrm: 无法删除"222/1.txt": 不允许的操作[root@linux-128 tmp]# echo '11111'>222/1.txt-bash: 222/1.txt: 权限不够[root@linux-128 tmp]# echo '11111'>>222/1.txt-bash: 222/1.txt: 权限不够[root@linux-128 tmp]# chmod 755 222/1.txtchmod: 更改"222/1.txt" 的权限: 不允许的操作[root@linux-128 tmp]# chown wuzhou:wuzhou  222/1.txtchown: 正在更改"222/1.txt" 的所有者: 不允许的操作

删除i权限后就能正常修改了。

[root@linux-128 tmp]# chattr -i 222/1.txt[root@linux-128 tmp]# chown wuzhou:wuzhou  222/1.txt[root@linux-128 tmp]# ls -l 222/1.txt-rw-r--r-- 1 wuzhou wuzhou 0 10月 25 23:42 222/1.txt
  1. 例子2:给文件1.txt加上a权限,然后进行删除,修改、追加内容,修改文件属性,所有者,所属组。
[root@linux-128 tmp]# chattr +a 222/1.txt[root@linux-128 tmp]# lsattr 222/1.txt-----a---------- 222/1.txt[root@linux-128 tmp]# rm 222/1.txtrm:是否删除普通空文件 "222/1.txt"?yrm: 无法删除"222/1.txt": 不允许的操作[root@linux-128 tmp]# echo '1111'>222/1.txt-bash: 222/1.txt: 不允许的操作[root@linux-128 tmp]# echo '1111'>>222/1.txt[root@linux-128 tmp]# cat 222/1.txt1111[root@linux-128 tmp]# chmod 755 222/1.txtchmod: 更改"222/1.txt" 的权限: 不允许的操作[root@linux-128 tmp]# mv 222/1.txt 222/2.txtmv: 无法将"222/1.txt" 移动至"222/2.txt": 不允许的操作[root@linux-128 tmp]# chown root:root 222/2.txtchown: 无法访问"222/2.txt": 没有那个文件或目录
  • 注意:1.txt加上a权限后,只能进行追加内容

  • 针对目录来添加a,i权限
  1. 给目录加一个i 属性后,不能给这个目录做任何操作,但是不妨碍已经存在的文件进行修改内容,但不能删除这个文件。 例子:
[root@linux-128 tmp]# chattr +i 222[root@linux-128 tmp]# touch 222/3.txttouch: 无法创建"222/3.txt": 权限不够[root@linux-128 tmp]# rm 222/1.txtrm:是否删除普通文件 "222/1.txt"?yrm: 无法删除"222/1.txt": 权限不够[root@linux-128 tmp]# echo '123123'>222/1.txt[root@linux-128 tmp]# cat 222/1.txt123123chattr +i   111
  1. 给目录加一个a 属性后,该目录能创建文件,修改文件里面的内容,但是不能删除。 例子:
[root@linux-128 tmp]# chattr +a 222[root@linux-128 tmp]# touch 222/2.txt[root@linux-128 tmp]# ls 222123  1.txt  2.txt[root@linux-128 tmp]# echo '112233'>>222/2.txt[root@linux-128 tmp]# echo '112233'>222/2.txt[root@linux-128 tmp]# cat 222/2.txt112233[root@linux-128 tmp]# rm 222/2.txtrm:是否删除普通文件 "222/2.txt"?yrm: 无法删除"222/2.txt": 不允许的操作

转载于:https://my.oschina.net/u/3706916/blog/1556406

你可能感兴趣的文章
.NET应用加载容器KGlue
查看>>
A.9- ASP.NET 中的验证控件(Validator)
查看>>
Ext JS 下载 及 是否收费
查看>>
DIV CSS 网页兼容全搞定 (IE6 IE7 IE8 IE9 火狐 谷歌)
查看>>
Ring buffer
查看>>
linux下网络问题综述
查看>>
Ember.js 1.0 RC3 发布,JavaScript 框架
查看>>
数字百位nbut 1407 1到n的数中 1出现的次数
查看>>
输出问题问题一百二十八:IBM Minus One
查看>>
矩阵乘法C语言实现
查看>>
Revit中创建分段剖面视图
查看>>
poj 1523 SPF
查看>>
链表与数组的区别
查看>>
vc写csv文件
查看>>
AppWidgets
查看>>
Oracle“记录被另一个用户锁住” 无法更新删除的解决办法
查看>>
ArcGIS多面体(multipatch)解析——引
查看>>
大数据应用之双色球算奖平台总体设计数据规模估算篇
查看>>
庖丁图解八皇后问题
查看>>
用log(N)的解法实现数值的整数次方
查看>>