set-UID
描述
让普通用户临时拥有root用户的权限
相关命令
su #切换用户命令
chmod #设置权限
参数
u+s #普通用户可以可以借用root权限的使用其命令
u-s #去掉权限
案例:用户给ls添加s权限
[root@localhost ~]# chmod u+s /usr/bin/ls^C
[root@localhost ~]# su AAA
[AAA@localhost root]$ wh
whatis whereis which while whiptail who whoami
[AAA@localhost root]$ whoami
AAA
[AAA@localhost root]$ ls /root/
anaconda-ks.cfg
[AAA@localhost root]$
set-GID
参数
u+s #普通用户可以可以借用root权限的使用其命令
u-s #去掉权限
案例:给目录添加s权限
[root@localhost ~]# chmod g+s /usr/bin/
stic_bit
描述
这是防删除 权限 就例如 /tmp/目录 什么那个用户创建的文件或者文件,此才有权限删除,ROOT用户除外
参数
O+t
案例:给目录添加t权限
[root@localhost ~]# chmod o+t /usr/bin/ 本文转自 闪电王 51CTO博客,原文链接:http://blog.51cto.com/sdwaqw/2053159