xshell/putty 连接 linux 虚拟机 connection failed 的解决方案
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
ubuntu 默认并没有安装 ssh 服务,如果通过 ssh(XShell/putty) 连接 ubuntu 虚拟机,则需要手动安装 ssh-server(ssh 分客户端和 openssh-client 和服务器端 openssh-server)。
1. 检查是否安装 ssh
方式之一:使用 which 命令
$ which ssh $ which sshd
方式之二:使用
ssh
$ ssh localhost
如果方式一,which sshd
不显示任何内容,或者方式二,提示输出connection refused
,这就表明还没有安装 ssh。
2. 安装 openssh-server
使用
sudo apt-get install openssh-server
进行安装,如果出现 openssh-server 没有可安装选项,则说明我们未对 apt-get 进行更新,则需要进一步执行,sudo apt-get update
,更新完毕后, 再执行sudo apt-get install openssh-server
进行安装,使用
ps -e|grep ssh
确认是否安装成功;
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献45条内容
所有评论(0)