1. 让普通用户能使用/tmp/cat去查看/etc/shadow文件
1 2345 | [root@www tmp]# cp -pv $(which cat) /tmp`/bin/cat' -> `/tmp/cat'[root@www tmp]# ll cat-rwxr-xr-x. 1 root root 48568 Oct 15 2014 cat[root@www tmp]# chmod u+s /tmp/cat |
2. 创建目录/test/data,让某组内普通用户对其有写权限,且创建的所有文件的属组为目录所属的组,此外,每个用户仅能删除自己的文件
1 234567891011121314 | [root@www tmp]# mkdir -pv /test/datamkdir: created directory `/test'mkdir: created directory `/test/data'[root@www tmp]# ll -d /test/datadrwxr-xr-x. 2 root root 4096 Sep 25 16:42 /test/data[root@www tmp]# groupadd datagrp[root@www tmp]# useradd datausr[root@www tmp]# id datausruid=509(datausr) gid=512(datausr) groups=512(datausr)[root@www tmp]# usermod -G datagrp datausr[root@www tmp]# chmod g+w,g+s,o+t /test/data[root@www tmp]# !llll -d /test/datadrwxrwsr-t. 2 root root 4096 Sep 25 16:42 /test/data |