服务器之家:专注于服务器技术及软件下载分享
分类导航

Linux|Centos|Ubuntu|系统进程|Fedora|注册表|Bios|Solaris|Windows7|Windows10|Windows11|windows server|

服务器之家 - 服务器系统 - Centos - Centos7学习之添加用户和用户组的方法

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

2022-02-16 18:02王吉军 Centos

本篇文章主要介绍了Centos7学习之添加用户和用户组的方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

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

?
1
2
3
# 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 没有任何交互动作!创建用户完毕后,必须修改密码否则无法登陆

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

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

1)sudoers 文件添加可写权限

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

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

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

3)取消 sudoers 文件可写权限

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

建工作组

?
1
groupadd test             //新建test工作组

新建用户同时增加工作组

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

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

给已有的用户增加工作组

?
1
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

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://blog.csdn.net/johnnycode/article/details/40655857

延伸 · 阅读

精彩推荐