LinuxLinux学习之路Hyman7和他的Linux学习之路

Day10-权限管理

2019-08-07  本文已影响6人  郝煜_Hyman

权限中的rwx是干什么的?

root@haoyu1[20:19:48]~# ll
total 2620
-rw-------. 1 root root    1367 Jul 25 00:31 anaconda-ks.cfg
lrwxrwxrwx. 1 root root       5 Jul 31 14:45 file1 -> file1
-rw-r--r--. 1 root root      16 Jul 30 11:31 file1.txt
-rw-r--r--. 1 root root      24 Jul 30 11:36 file2.txt


字母 含义 对应权限
r(read) 读取权限 4
w(write) 写入权限 2
x(execute) 执行权限 1
-(没有权限) 没有权限 0

如何变更一个文件至其他用户?

root@haoyu1[20:22:19]~# touch file                    #创建文件 
root@haoyu1[20:22:19]~# chmod a=rwx file              #给所有人添 加读写执行权限 
root@haoyu1[20:22:19]~# chmod a=-rwx file             #取消所有的 权限 
root@haoyu1[20:22:19]~# chmod u=rwx,g=rw,o=- file     #属主读写执 行,属组读写,其他人无权限 
root@haoyu1[20:22:19]~# chmod ug=rwx,o=r file         #属主属组读 写执行,其他人读权限 
root@haoyu1[20:22:19]~# ll file 
-rwxrw-r-- 1 root root 0 Apr 13 03:29 file
# 针对文件最高设定为 777   但是一般都是666
#1.设定属主(读写) 属组(读)权限  其他人(无)    rw-r------    翻译为数字 640
[root@haoyu1 ~]# chmod 640 1.txt 
[root@haoyu1 ~]# ll 1.txt 
-rw-r-----. 1 hyman root 8 Aug  7 10:07 1.txt

#2. 设定属主(读写) 属组(无)权限  其他人(无) 
[root@haoyu1 ~]# chmod 600 1.txt 
[root@haoyu1 ~]# ll 
total 4 
-rw-------. 1 oldboy root 8 Aug  7 10:07 1.txt

## 针对目录设定权限:   777    
#选项:  -R递归修改 
[root@haoyu1 ~]# mkdir dir 
[root@haoyu1 ~]# chmod 777 dir/    #修改目录允许所有人访问 
[root@haoyu1 ~]# chmod -R 755 dir/ #修改目录及子目录权限 
[root@haoyu1 ~]# ll -d dir/ 
drwxr-xr-x 2 root root 6 Apr 13 03:34 dir/

[root@haoyu1 ~]# groupadd hr 
[root@haoyu1 ~]# useradd hr01 -G hr 
[root@haoyu1 ~]# useradd hr02 -G hr 
[root@haoyu1 ~]# mkdir /home/hr 
[root@haoyu1 ~]# chgrp hr /home/hr 
[root@haoyu1 ~]# chmod 770 /home/hr 
[root@haoyu1 ~]# ll -d /home/hr 
drwxrwx--- 2 root hr 6 Apr 13 03:26 /home/hr

权限验证

属主和属组变更

#chown 更改属主以及属组 -R:递归修改
#准备环境,创建文件和目录 
[root@haoyu1 ~]# mkdir dir/test1 && touch dir/file
#示例1: 修改所属主为bin 
[root@haoyu1 ~]# chown bin dir/
#示例2: 修改所属组为adm 
[root@haoyu1 ~]# chown .adm dir/
#示例3: 递归修改目录及目录下的所有文件属主和属组 
[root@haoyu1 ~]# chown -R root.root dir/
上一篇 下一篇

猜你喜欢

热点阅读