linux中的強制位與冒險位(轉)

ba發表於2007-08-16
linux中的強制位與冒險位(轉)[@more@]----------------------------
強制位:uid,gid;主要用於檔案及目錄
冒險位:sticky 只用於目錄,多數是共享目錄.
目錄也是檔案,嚴格意思上講檔案應該有四組許可權(12位)
強制/冒險 | 宿主 | 組 | 其它
===========================================
sst rwx rwx rwx


強制位:使普通使用者也能使用超級使用者的命令(相當於尚方寶劍)
用於檔案的:
[root@clone bin]# find / -perm 4555
/usr/sbin/sendmail
/sbin/pwdb_chkpwd
/sbin/unix_chkpwd

[root@clone bin]# ls -l /usr/sbin/sendmail
-r-sr-xr-x 1 root root 452204 Sep 17 2003 /usr/sbin/sendmail

用於組的:
[root@clone bin]# find / -perm 2555
/usr/bin/wall

[root@clone bin]# ls -l /usr/bin/wall
-r-xr-sr-x 1 root tty 6444 Aug 29 2001 /usr/bin/wall

冒險位:防止使用者刪除其它使用者資料(自己的資料自己刪除,超級使用者除外)
[root@clone bin]# ls -l /
drwxrwxrwt 10 root root 4096 Oct 18 14:27 tmp

注:
S:表示該位沒有x位;
s: 表示該位有x位
T:表示該位沒有x位;
t: 表示該位有x位

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10617731/viewspace-961729/,如需轉載,請註明出處,否則將追究法律責任。

相關文章