linux 添加用户 (centos7)
Posted backstreetboy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 添加用户 (centos7)相关的知识,希望对你有一定的参考价值。
Linux中分两个基本用户, ROOT(系统管理员)和 user(普通用户)
root 用户系统自带
user普通需要自己添加
1.首先查看当前状态用户 whomai
[[email protected] ~]# whoami
root
2.创建新普通用户 useradd test
id test 检查刚刚创建的用户名是否存在
[[email protected] ~]# useradd test
[[email protected] ~]# id test
uid=1002(test) gid=1002(test) groups=1002(test)
3. 给新创建的用户设置密码 passwd test
[[email protected] ~]# passwd test
Changing password for user test.
New password:
Retype new password:
passwd: all authentication tokens updated successfully.
4. 切换到新用户 su - test
[[email protected] ~]# su - test
Last failed login: Wed Jan 30 10:46:08 CST 2019 from 89.7.28.6 on ssh:notty
There were 1502 failed login attempts since the last successful login.
[[email protected] ~]$ whoami
test
5.退出普通用户推荐使用 快捷键 ctrl+d
su - root 切换到管理员需要密码验证 ,所以不推荐使用
以上是关于linux 添加用户 (centos7)的主要内容,如果未能解决你的问题,请参考以下文章