一聚教程网:一个值得你收藏的教程网站

热门教程

Centos7学习之添加用户和用户组的方法

时间:2022-06-30 20:42:58 编辑:袖梨 来源:一聚教程网

在使用 Centos 之前用的更多是Ubuntu,所以在 useradd 和 adduser 两条命令出现歧义,在Ubuntu系统上这是两条命令,而在Centos上则是同一条命令,adduser 是链接的形式存在

# ll /usr/sbin/ | grep user 
lrwxrwxrwx. 1 root root  7 10月 30 17:09 adduser -> useradd 
-rwxr-x---. 1 root root 114064 6月 10 09:16 useradd 

1、添加用户,Centos 没有任何交互动作!创建用户完毕后,必须修改密码否则无法登陆

# useradd dev #创建用户 
# passwd dev #修改密码 
更改用户 dev 的密码 。 
新的 密码: 
重新输入新的 密码: 
passwd:所有的身份验证令牌已经成功更新。 

2、为新建用户添加 sudo 权限,否则啥事都要请教 root 老大不合适,你懂得!

1)sudoers 文件添加可写权限

# chmod -v u+w /etc/sudoers 
"/etc/sudoers" 的权限模式保留为0640 (rw-r-----) 

2)在 sudoers 文件添加新用户信息到 ## Allow root to run any commands anywher 下,修改后的效果为

## Allow root to run any commands anywher 
root ALL=(ALL) ALL 
dev ALL=(ALL) ALL #新增用户信息 

3)取消 sudoers 文件可写权限

# chmod -v u-w /etc/sudoers 
mode of "/etc/sudoers" changed from 0640 (rw-r-----) to 0440 (r--r-----) 

建工作组

groupadd test             //新建test工作组

新建用户同时增加工作组

useradd -g test phpq        //新建phpq用户并增加到test工作组

注::-g 所属组 -d 家目录 -s 所用的SHELL

给已有的用户增加工作组

usermod -G groupname username 或者:gpasswd -a user group

补充:查看用户和用户组的方法

用户列表文件:/etc/passwd
用户组列表文件:/etc/group
查看系统中有哪些用户:cut -d : -f 1 /etc/passwd
查看可以登录系统的用户:cat /etc/passwd | grep -v /sbin/nologin | cut -d : -f 1
查看某一用户:w 用户名
查看登录用户:who
查看用户登录历史记录:last

热门栏目