使用 root 用户登录,新建一个普通的用户 newuser
[root@iZ2864f6btwZ ~]# useradd -M newuser
注意:newuser为你想要创建的用户名称,其中
-M
是指不要自动建立用户的登录目录
设置用户密码
[root@iZ2864f6btwZ ~]# passwd newuser
Changing password for user newuser.
New password:
Retype new password:
passwd: all authentication tokens updated successfully.
修改 newuser 对应的/etc/passwd
信息,保持 root 和 newuser 后面的信息一致
[root@iZ2864f6btwZ ~]# vim /etc/passwd
...
root:x:0:0:root:/root:/bin/bash
...
newuser:x:0:0:root:/root:/bin/bash
...
切换 newuser 用户
[root@iZ2864f6btwZ ~]# su - newuser
禁用 root 账号
[root@iZ2864f6btwZ ~]# usermod -L root
结尾:在 SSH 终端使用 root 账户登录,如果登录失败则伪装成功,此时使用 newuser 账户登录将拥有 root 的权限,可以将 newuser 当作 root 的一个别名,这样别人连你的用户名都不知道了,想要黑你又更难了吧。