0


ubantu 安装openssh

1.安装Openssh服务端

首先,我们需要更新我们的本地库索引。所以如下所见,我们需要先输入“apt-get update”

$ sudo apt-get update

现在我们可以通过以下命令安装openssh-server:

$ sudo apt-get install openssh-server

  1. 开启openssh服务

在OpenSSH已经成功安装在Ubuntu14.04操作系统上了之后,我们要启动OpenSSH的服务。以下命令让你启动/开启服务。

$ sudo service ssh start

$ sudo /etc/init.d/ssh start

————————————————
版权声明:本文为CSDN博主「0yst3r」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/a_small_rabbit/article/details/86926914

前天在虚拟机中安装了ubuntu 10.10,装好基本系统后,在安装openssh中,使用sudo apt-get install openssh-server命令,发现安装不了,出现以下问题:

Reading package lists… Done
Building dependency tree
Reading state information… Done
Package openssh-server is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package openssh-server has no installation candidate

经过两天的百度与google,基本就是使用sudo apt-get update 进行升级,发现竟然连接不到网络,但是可以ping通,就是升级不了,很多人都说是源的问题,但是我在windows下可以到源地址上下载东西,源没问题。继续百度和google,发现很多人也遇到过,有多种多样的解决办法,但对都是没用,依然没得到解决。

这个问题困扰了我两天,突然灵机一动,是不是虚拟机中使用网络连接方式的问题?

于是,我把虚拟机的网络连接从NAT方式改为桥接方式,换IP地址,DNS,重启。

再使用sudo apt-get update ,OK 问题解决!

然后,使用sudo apt-get install openssh-server 就可以安装了。

终于把问题解决了,然后就可以使用远程登录了!

标签: ubuntu linux 服务器

本文转载自: https://blog.csdn.net/heqinghua217/article/details/127682117
版权归原作者 老何_低调 所有, 如有侵权,请联系我们删除。

“ubantu 安装openssh”的评论:

还没有评论