一、基本权限和归属
1. 访问权限
读取:允许查看、显示目录列表
写入:允许修改,允许在目录中新建、移动、删除文件或子目录
可执行:允许运行程序、切换目录
2. 查看文件的权限
# ls -l install.log
-|rw-|r--|r-- 1 root root 26195 Dec 17 10:42 install.log
① ② ③ ④ ⑤ ⑥ ⑦ ⑧ ⑨ ⑩
①. 文件类型
-代表普通文件
d代表目录
l代表连接
②. rw-:代表文件所有者的权限(u)
r=读=4
w=写=2
x=执行=1
③. r--:代表文件所属组的权限(g)
r=读=4
w=写=2
x=执行=1
④. r--:其他用户的权限(o)
r=读=4
w=写=2
x=执行=1
a=ugo
⑤. 文件 硬链接数
目录 该目录下有多少子目录包括.和..
⑥. 文件所有者
⑦. 文件所属组
⑧. 文件大小
⑨. 文件修改时间
⑩. 文件名
3. 命令 (R表示递归)
chmod 改变权限
chmod ugoa [+-=] [rwx] 文件
chmod 数字 文件
文件最大权限666
目录最大权限777
默认创建文件的权限644
默认创建目录的权限755
umask
最大权限的rwx-umask的rwx=默认权限
补充:
对于目录来说没有x权限,无论有没rw,都不能进入该目录
chown 改变所有者与所属组
chown 所有者:所属组 对象
chgrp 组 文件 更改文件的属组
二、附加权限控制
1. 特殊权限介绍
Set UID: 4 User+x
Set GID: 2 Group+x
Sticky Bit: 1 Other+x
2. 特殊权限作用
Set UID:
只能对可执行程序设置,当其他用户执行带SUID标记的程序时,将会使用程序所有者的身份去执行
Set GID:
可以对可执行程序设置,当其他用户执行带SGID标记的程序时,将会使用程序所属组的身份去执行
可以对目录设置,当对目录设置SGID后,任何人在该目录下创建文件和目录的所属组自动继承该目录的所属组
Sticky Bit:
对目录设置,任何人在该目录下创建文件和目录,只有root与文件创建者有删除权限
3. ACL策略
getfacl 文件 查看ACL策略
setfacl [选项] u:用户名:权限 文件
setfacl [选项] g:组名:权限 文件
-m 定义一条ACL策略
-x 删除指定的ACL策略
-b 清除所有已设置的ACL策略
-R 递归设置
-d 为目录设置默认权限
一、基本权限和归属
公司技术部有一台Linux开发服务器,根据部门内项目组的构成情况,需要建立相应的用户账号,并对开发数据相关目录配置访问权限。
1.文件夹/tech/nsdhome、/tech/jsdhome,分别归属于nsd组、jsd组,禁止其他用户进入。
2.创建部门公共目录/public,技术部的所有员工(tech组)对其拥有可读、可写、可执行,其他用户禁止访问此目录。
[[email protected] /]# mkdir -p /tech/nsdhome
[[email protected] /]# mkdir -p /tech/jsdhome
[[email protected] /]# mkdir /public
[[email protected] /]# groupadd nsd
[[email protected] /]# groupadd jsd
[[email protected] /]# groupadd tech
[[email protected] /]# useradd -g nsd nsd01
[[email protected] /]# useradd -g nsd nsd02
[[email protected] /]# useradd -g jsd jsd01
[[email protected] /]# useradd -g jsd jsd02
[[email protected] /]# useradd -g tech yg01
[[email protected] /]# useradd yg02
[[email protected] /]# chown :nsd /tech/nsdhome
[[email protected] /]# ls -l /tech/nsdhome
总计 0
[[email protected] /]# ls -ld /tech/nsdhome
drwxr-xr-x 2 root nsd 4096 07-30 11:36 /tech/nsdhome
[[email protected] /]# chmod o-rx /tech/nsdhome
[[email protected] /]# chown :jsd /tech/jsdhome
[[email protected] /]# ls -ld /tech/jsdhome
drwxr-xr-x 2 root jsd 4096 07-30 11:36 /tech/jsdhome
[[email protected] /]# chmod o-rx /tech/jsdhome
[[email protected] /]# chown :tech /public
[[email protected] /]# ls -ld /public
drwxr-xr-x 2 root tech 4096 07-30 11:36 /public
[[email protected] /]# chmod g+w /public
[[email protected] /]# ls -ld /public
drwxrwxr-x 2 root tech 4096 07-30 11:36 /public
[[email protected] /]# chmod o-rx /public
[[email protected] /]# ls -ld /public
drwxrwx--- 2 root tech 4096 07-30 11:36 /public
[[email protected] /]# ls -ld /tech/nsdhome
drwxr-x--- 2 root nsd 4096 07-30 11:36 /tech/nsdhome
[[email protected] /]# ls -ld /tech/jsdhome
drwxr-x--- 2 root jsd 4096 07-30 11:36 /tech/jsdhome
[[email protected] /]#
二、附加权限控制
1、Suid实验
只能针对程序(命令)设置,当任何人在执行具有suid权限的命令时,将使用该命令的所有者身份执行
[[email protected] ~]# ls -l /etc/shadow
[[email protected] ~]# which passwd
[[email protected] ~]# ls -l /usr/bin/passwd
[[email protected] ~]# umask 022
[[email protected] ~]# which touch
[[email protected] ~]# cp /bin/tosuuch /bin/suidtouch
[[email protected] ~]# ls -l /bin/*touch
[[email protected] ~]# useradd lily
[[email protected] ~]# su - lily
[[email protected] ~]$ suidtouch suid-file1.txt
[[email protected] ~]$ ls -l suid-file1.txt
[[email protected] ~]$ exit
[[email protected] ~]# ls -l /bin/suidtouch
[[email protected] ~]# chmod u+s /bin/suidtouch
[[email protected] ~]# ls -l /bin/suidtouch
[[email protected] ~]# su - lily
[[email protected] ~]$ suidtouch suid-file2.txt
[[email protected] ~]$ ls -l suid-file*
[[email protected] ~]$ exit
[[email protected] ~]# rm -rf /bin/suidtouch
2、Sgid实验
能对程序(命令)设置,也可以对目录设置
当任何人在执行具有sgid权限的命令时,将使用该命令的所属组身份执行
[[email protected] ~]# which mkdir
[[email protected] ~]# cp /bin/mkdir /bin/sgidmkdir
[[email protected] ~]# ls -l /bin/*mkdir
[[email protected] ~]# su - lily
[[email protected] ~]$ sgidmkdir test1
[[email protected] ~]$ ls -ld test1
[[email protected] ~]$ exit
[[email protected] ~]# chmod g+s /bin/sgidmkdir
[[email protected] ~]# ls -l /bin/sgidmkdir
[[email protected] ~]# su - lily
[[email protected] ~]$ sgidmkdir test2
[[email protected] ~]$ ls -ld test*
[[email protected] ~]$ exit
[[email protected] ~]# rm -rf /bin/sgidmkdir
对目录设置Sgid,任何人在该目录下创建的文件或子目录的所属组都自动继承该目录本身所属组
[[email protected] ~]# mkdir /testgid
[[email protected] ~]# ls -ld /testgid/
drwxr-xr-x 2 root root 4096 Jan 6 16:53 /testgid/
[[email protected] ~]# chmod 0757 /testgid/
[[email protected] ~]# su - lily
[[email protected] ~]$ mkdir /testgid/lilytest1
[[email protected] ~]$ touch /testgid/lilyfile1.txt
[[email protected] ~]$ ls -l /testgid/
[[email protected] ~]$ exit
[[email protected] ~]# chmod 2757 /testgid/
[[email protected] ~]# ls -ld /testgid/
[[email protected] ~]# su - lily
[[email protected] ~]$ mkdir /testgid/lilytest2
[[email protected] ~]$ touch /testgid/lilyfile2.txt
[[email protected] ~]$ ls -l /testgid/
3、t位权限echo
针对公共目录设置,目录设置t位权限后,该目录下的文件或子目录只有root与文件所有者能够删除
[[email protected] ~]# mkdir /soft
[[email protected] ~]# ls -ld /soft/
[[email protected] ~]# chmod o+w /soft/
[[email protected] ~]# ls -ld /soft/
[[email protected] ~]# useradd wbb
[[email protected] ~]# useradd lhq
[[email protected] ~]# su - lhq
[[email protected] ~]$ cat /soft/lhq.txt
hello,byebye
[[email protected] ~]$ exit
[[email protected] ~]# su - wbb
[[email protected] ~]$ ls -ld /soft/
[[email protected] ~]$ ls -l /soft/
[[email protected] ~]$ rm -rf /soft/lhq.txt
[[email protected] ~]$ ls -l /soft/
[[email protected] ~]# chmod o+t /soft/
[[email protected] ~]# ls -ld /soft/
[[email protected] ~]# su - lhq
[[email protected] ~]$ cat /soft/lhq.txt
hello,byebye
[[email protected] ~]$ exit
[[email protected] ~]# su - wbb
[[email protected] ~]$ ls -l /soft/
[[email protected] ~]$ ls -ld /soft/
[[email protected] ~]$ rm -rf /soft/lhq.txt
[[email protected] ~]# find / -type f -a -perm +6000 //查找系统中suid/sgid的程序
4、ACL权限设置
创建账户:mike john kaka
创建文件:/data/file1.txt
·mike对文件有读写权限,john只有读权限。其他用户没有任何权限
·kaka具有与john相同权限
·创建lily,lily对file1.txt具有读执行权限,其他用户没有任何权限
[[email protected] ~]# tune2fs -l /dev/sda2 | grep acl
Default mount options: user_xattr acl
[[email protected] ~]# tune2fs -l /dev/sda1 | grep acl
Default mount options: user_xattr acl
[[email protected] ~]# ls -ld /data/
drwxrwxrwx 3 root root 4096 12-09 16:21 /data/
[[email protected] ~]# rm -rf /data/
[[email protected] ~]# mkdir /data
[[email protected] ~]# getfacl /data/
getfacl: Removing leading ‘/‘ from absolute path names
# file: data
# owner: root
# group: root
user::rwx
group::r-x
other::r-x
[[email protected] ~]# ls -ld /data/
drwxr-xr-x 2 root root 4096 12-09 16:27 /data/
[[email protected] ~]# setfacl -m u:mike:rwx /data/
[[email protected] ~]# ls -ld /data/
drwxrwxr-x+ 2 root root 4096 12-09 16:27 /data/
[[email protected] ~]# getfacl /data/
getfacl: Removing leading ‘/‘ from absolute path names
# file: data
# owner: root
# group: root
user::rwx
user:mike:rwx
group::r-x
mask::rwx
other::r-x
[[email protected] ~]# setfacl -m u:john:r-- /data/
[[email protected] ~]# setfacl -m u:kaka:r-- /data/
[[email protected] ~]# setfacl -m u:lily:r-x /data/
linux基本权限和归属、附加权限控制