升级到ubuntu 18后,通过Putty和RDP失去所有连接

时间:2018-09-07 14:04:47

标签: ubuntu

我是Ubuntu的初学者。我有一个RDP连接,可从Windows10连接到带有Ubutnu服务器v。16.04.5的VM。

我使用以下命令启动了对ubuntu 18的升级:

sudo apt更新

sudo apt升级

sudo apt dist-upgrade

sudo do-release-upgrade

系统进行了升级,然后自动关闭了我的RDP连接。 从那以后,我无法重新连接我的IP地址。

这是the error message on RDP

此处the error message on Puttty

我阅读了askubuntu上的一些链接,建议一些与ssh相关的命令。问题是我目前无法访问ubuntu服务器以执行以下任何命令。

请帮忙吗?

2 个答案:

答案 0 :(得分:0)

尝试配置/etc/network/interfaces

# The primary network interface
auto example
iface example inet static
address 192.168.?.?
netmask 255.255.255.?
gateway 192.168.?.?
dns-nameservers 192.168.?.?

?为自己的价值观

答案 1 :(得分:0)

此解决方案对我有用:

  1. 编辑sshd_config:
      

    sudo nano / etc / ssh / sshd_config

将PasswordAuthentication和ChallengeResponseAuthentication更改为yes。

  1. 重新启动ssh:
      

    /etc/init.d/ssh重新启动