当前位置: 技术问答>linux和unix
简单权限问题
来源: 互联网 发布时间:2016-06-01
本文导语: chmod 4755 rws r-x r-x 文件被设置了suid,文件属主具有读、写和执行的权限,所有其他用户具有读和执行的权限 chmod 6711 rws --s --s 文件被设置了suid和guid,文件属主具有读、写和执行的权限,所有其他用户具有执...
chmod 4755 rws r-x r-x 文件被设置了suid,文件属主具有读、写和执行的权限,所有其他用户具有读和执行的权限
chmod 6711 rws --s --s 文件被设置了suid和guid,文件属主具有读、写和执行的权限,所有其他用户具有执行的权限
我想问的是为什么不是chmod 6711 rws --s --x,而是chmod 6711 rws --s --s呢?
其它用户的s位究竟是什么意思呢?
chmod 6711 rws --s --s 文件被设置了suid和guid,文件属主具有读、写和执行的权限,所有其他用户具有执行的权限
我想问的是为什么不是chmod 6711 rws --s --x,而是chmod 6711 rws --s --s呢?
其它用户的s位究竟是什么意思呢?
|
http://blog.csdn.net/jiean/archive/2009/01/02/3686207.aspx
可以看看上面
可以看看上面
|
看了楼上的链接网页,了解了
|
久简单的两个文件:
[root@RHEL4_U5 ~]# ll /usr/bin/passwd
-r-s--x--x 1 root root 21200 Jun 17 2005 /usr/bin/passwd
[root@RHEL4_U5 ~]# ls -dl /tmp
drwxrwxrwt 6 root root 4096 Apr 22 12:36 /tmp
[root@RHEL4_U5 ~]# ll /usr/bin/passwd
-r-s--x--x 1 root root 21200 Jun 17 2005 /usr/bin/passwd
[root@RHEL4_U5 ~]# ls -dl /tmp
drwxrwxrwt 6 root root 4096 Apr 22 12:36 /tmp