我是靠谱客的博主 魁梧大象,最近开发中收集的这篇文章主要介绍ubuntu安装ssh,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

ps -e|grep ssh

显示sshd,说明有ssh
sudo apt-get install openssh-server
安装openssh-server,如果顺利的话会安装成功,如果遇到以下问题:

openssh-server : Depends: openssh-client (= 1:6.6p1-2ubuntu2.8)
Recommends: ssh-import-id but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
原因如下:

这是因为,openssh-server是依赖于openssh-clien的,那ubuntu不是自带了openssh-client吗?

原由是自带的openssh-clien与所要安装的openssh-server所依赖的版本不同,这里所依赖的版本是:

1:6.6p1-2ubuntu2.8

所以要安装对应版本的openssh-clien,来覆盖掉ubuntu自带的

sudo apt-get install openssh-client=1:6.6p1-2xx

git远程登录

ssh
username@host

最后

以上就是魁梧大象为你收集整理的ubuntu安装ssh的全部内容,希望文章能够帮你解决ubuntu安装ssh所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部