添加一个普通帐号
# 添加一个名为username的用户
adduser username
# 更改账户密码
passwd username
Changing password for user tommy.
New UNIX password: //在这里输入新密码
Retype new UNIX password: //再次输入新密码
passwd: all authentication tokens updated successfully.
添加一个仅有代理权限的帐号
# 添加帐号username
useradd -M -s /sbin/nologin -n username
# 更改帐号密码
passwd username
# 删除这个帐号
userdel -r username
文章评论