一、切换到root用户
sudo su
二、添加一个新用户
useradd frontng
三、为该用户设置密码
passwd frontng
提示输入密码
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully
四、赋予root权限
vim /etc/sudoers
修改文件如下:
# User privilege specification
root ALL=(ALL) ALL
frontng ALL=(ALL) AL
五、设置用户的主目录
usermod -d /home/frontng frontng
六、设置用户的默认命令解释程序(通常是bash)
usermod -s /bin/bash frontng
七、登录并切换到root权限
ssh frontng@xxx.xxx.xxx.xxx
#输入frontng用户密码
sudo su
#输入frontng用户密码