在Linux终端下如何增加删除普通用户帐户
想了解Linux下的用户信息,主要两个文件:/etc/passwd和/etc/shadow
今天主要讲一下用命令创建和删除用户
增加用户
一般是两个步骤,增加用户名和指定用户密码
[[email protected] /]# useradd test2 [[email protected] /]# passwd test2 Changing password for user test2. New UNIX password: BAD PASSWORD: it does not contain enough DIFFERENT characters Retype new UNIX password: passwd: all authentication tokens updated successfully. #下面这个命令是为用户指定家目录的 [[email protected] home]# useradd test5 -d /home/t #更多详细的参数man useradd
删除用户
删除用户比较简单,默认不加参数,不会把用户的家目录删除,
要删除家目录的时候,要加上-r参数
#默认没有删除家目录 [[email protected] home]# userdel test2 [[email protected] home]# ls /home lele swap t t4 test2 test3 #加上-r参数可以把家目录也一并删除 [[email protected] home]# useradd test6 [[email protected] home]# ls /home lele swap t t4 test2 test3 test6 [[email protected] home]# userdel -r test6 [[email protected] home]# ls /home lele swap t t4 test2 test3
时间: 2024-10-08 19:01:25