您的位置:首页 > 运维架构

033-Unit 10 Advanced Topics in Users ,Groups and Permissions

2009-08-11 21:34 513 查看
User and Group ID Numbers

/etc/passwd :User database

/etc/shadow : Password database

/etc/group : Group database

System User and Group : 1-499 for system

changing your indentity : chang password : passwd command

passwd --status user1

su user1 切换账号

su - user1 切换账号和环境变量(run login shell)

whoami command

groups command

id command

users , who , w command to display users

last command show login history

default permission for file is 666 ; for directory is 777

umask command : default root 022 , other 002 ; so for root file is 644 , directory is 755 ;

and other user file is 664 , directory is 755

Special Permissions : suid 4(u+s), sgid 2(g+s), sticky 1(0+t) 小写有x权限,大写没有x权限

chmod u+s xxx.txt or chmod 4755 xxx.txt

suid : run as command owner user (ex. /bin/ping)

sticky bit : only owner and root cat remove files in the directory

sgid : only members of the group can build files in the directory
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: