一、用户操作
查看用户:
cat /etc/passwd |cut -f 1 -d :
一)添加新用户两种方法:
查看用户:
cat /etc/passwd |cut -f 1 -d :
一)添加新用户两种方法:
方法一:adduser 自动添加用户到home下
sudo adduser <username>
输入密码
确认密码
方法二:useradd
指定新用户目录方式(在root用户下)
1.创建:
useradd [-d home] [-s shell] [-c comment] [-m [-k template]] [-f inactive] [-e expire ] [-p passwd] [-r] name
参数:
-c:加上备注文字,备注文字保存在passwd的备注栏中。
-d:指定用户登入时的启始目录。
-D:变更预设值。
-e:指定账号的有效期限,缺省表示永久有效。
-f:指定在密码过期后多少天即关闭该账号。
-g:指定用户所属的群组。
-G:指定用户所属的附加群组。
-m:自动建立用户的登入目录。