一个系统一般都是有多个账号使用的,而有些目录和文件需要赋予其他用户可读写的权限,比如/tmp/a.tmp
这就有一个问题了,比如A在/tmp目录下放的文件a.tmp,而B也需要有/tmp的权限,他就可以删除这个a.tmp文件;
如果只想让b有读写这个文件的权限,但是没有删除这个文件的权限该怎么办呢?这时候就可以利用t键位,粘着位权限
测试如下:
03 |
[a@ test tmp]$ ll -d /tmp
|
04 |
drwxrwxrwx 2 root root 4096 Oct 28 23:55 /tmp |
06 |
[a@ test tmp]$ touch a.tm
|
07 |
[a@ test tmp]$ chmod 777 a.tm
|
08 |
[a@ test tmp]$ ls -l a.tm
|
09 |
-rwxrwxrwx 1 a a 0 Oct 28 23:55 a.tm |
05 |
drwxrwxrwt 2 root root 4096 Oct 28 23:59 /tmp |
08 |
[b@ test tmp]$ rm -r a.tm
|
09 |
rm : cannot remove `a.tm': Operation not permitted
|
11 |
[b@ test tmp]$ ls -l a.tm
|
12 |
-rwxrwxrwx 1 a a 0 Oct 28 23:55 a.tm |
14 |
[b@ test tmp]$ echo b- test >a.tm
|
15 |
[b@ test tmp]$ cat a.tm
|
至此,目的已经达到了,让一个账号对一个文件有读写的权限却无法删除~
备注:拥有t粘着位权限的目录下的文件,除了属主用户外,root用户也可以删除。