Linux创建用户

2023-03-19  本文已影响0人  有梦想的虫子_2018

Linux useradd 命令

使用 useradd 指令所建立的帐号,实际上是保存在 /etc/passwd 文本文件中。

添加用户:useradd -m 用户名  然后设置密码  passwd 用户名

删除用户:userdel  -r  用户名

指令

[root@localhost ~]# useradd testuser
[root@localhost ~]# passwd testuser 
Changing password for user testuser.
New password: 
BAD PASSWORD: The password is shorter than 8 characters
Retype new password: 
passwd: all authentication tokens updated successfully.

新创建的用户会在/home下创建一个用户目录testuser

[root@localhost ~]# ls /home/
esuser  testuser  vagrant

创建新用户后,同时会在etc目录下的passwd文件中添加这个新用户的相关信息

[testuser@localhost ~]$ cat /etc/passwd
root:x:0:0:root:/root:/bin/bash
testuser:x:1003:1003::/home/testuser:/bin/bash

切换用户指令

su 用户名
说明:su是switch user的缩写,表示用户切换

[root@localhost ~]# su testuser
[testuser@localhost root]$ 

用户组的添加和删除

groupadd testgroup 组的添加

groupdel testgroup 组的删除

语法

useradd [-mMnr][-c <备注>][-d <登入目录>][-e <有效期限>][-f <缓冲天数>][-g <群组>][-G <群组>][-s <shell>][-u <uid>][用户帐号]
或
useradd -D [-b][-e <有效期限>][-f <缓冲天数>][-g <群组>][-G <群组>][-s <shell>]

参数说明

参考:
Linux useradd 命令
linux创建用户、设置密码

上一篇 下一篇

猜你喜欢

热点阅读