新安装的ubuntu系统只能使用普通用户登录,要想使用root登录需要修改ssh的权限配置

配置文件: /etc/ssh/sshd_config

在文件最末尾添加:

UseDNS no
AddressFamily inet
SyslogFacility AUTHPRIV
PermitRootLogin yes
PasswordAuthentication yes

重启ssh服务

  systemctl restart ssh