因为工作的原因,需要在ubuntu16.04上安装ssh软件,便于在windows7上使用putty连接远程的linux服务器。在使用sudo apt-get install openssh-server命令安装ssh是出现如下的错误:
E:软件包openssh-server还没有可供安装的候选者。
这是因为我安装的是ubuntu16.04 LTS操作系统,这个操作系统没有包含有openssh server软件。
解决方法是先下载openssh server软件,然后进行安装。
下载软件的命令为:sudo apt-get update。下载完毕后使用sudo apt-get install openssh-server安装。
使用sudo /etc/init.d/ssh start命令开启ssh服务。
然后就可以在windows7上使用putty连接ubuntu了。