当前位置: 技术问答>linux和unix
文档属性问题
来源: 互联网 发布时间:2015-06-13
本文导语: 什麼是euid, 同時 -rwsr-xr-x 1 root root 95564 Feb 19 2003 /bin/su, 里面属性可看到s, 那是什么意思? | suid意味着:如果某个用户对属于自己的shell脚本设置了这种权限,那么其他用户在执行这个...
什麼是euid, 同時 -rwsr-xr-x 1 root root 95564 Feb 19 2003 /bin/su, 里面属性可看到s, 那是什么意思?
|
suid意味着:如果某个用户对属于自己的shell脚本设置了这种权限,那么其他用户在执行这个脚本时也会具有属主的相应权限。同样的原则也适用于guid。执行相应脚本的用户将具有该文件所属用户组中用户的权限。
如:chmod 4755 filename --- rwsr-xr-x 设置suid
chmod 6711 filename --- rws--s--s 设置suid和guid
或 chmod u+s filename 来设置suid和guid
如果有:rwSr-xr-x 其中S为大写,则表示相应的权限位未被设置,可以忽略。
如:chmod 4755 filename --- rwsr-xr-x 设置suid
chmod 6711 filename --- rws--s--s 设置suid和guid
或 chmod u+s filename 来设置suid和guid
如果有:rwSr-xr-x 其中S为大写,则表示相应的权限位未被设置,可以忽略。
|
here s means SUID(4000), when a user use this command, the user ID will be replaced
by the ID of file owner. SGID is same with it.
by the ID of file owner. SGID is same with it.
|
man chattr