码迷,mamicode.com
首页 > 系统相关 > 详细

linux 添加用户 (centos7)

时间:2019-01-30 12:48:41      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:rom   last   密码验证   系统管理   添加用户   系统管   The   add   设置密码   

Linux中分两个基本用户, ROOT(系统管理员)和 user(普通用户)

root 用户系统自带

user普通需要自己添加

1.首先查看当前状态用户 whomai

[root@2018sh001 ~]# whoami
root

2.创建新普通用户   useradd test 

  id test   检查刚刚创建的用户名是否存在

[root@2018sh001 ~]# useradd test
[root@2018sh001 ~]# id test
uid=1002(test) gid=1002(test) groups=1002(test)

3. 给新创建的用户设置密码  passwd test

[root@2018sh001 ~]# passwd test
Changing password for user test.
New password:
Retype new password:
passwd: all authentication tokens updated successfully.

4. 切换到新用户   su - test

[root@2018sh001 ~]# 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.
[test@2018sh001 ~]$ whoami
test

5.退出普通用户推荐使用  快捷键 ctrl+d 

su  - root    切换到管理员需要密码验证 ,所以不推荐使用

 

linux 添加用户 (centos7)

标签:rom   last   密码验证   系统管理   添加用户   系统管   The   add   设置密码   

原文地址:https://www.cnblogs.com/backstreetboy/p/10337360.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!