openssh安装教程

Posted 诸子流

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了openssh安装教程相关的知识,希望对你有一定的参考价值。

1.下载

官方网址:http://www.openssh.com/

在页面左侧选择操作系统进入,Linux对应页面为:http://www.openssh.com/portable.html

选择一个镜像站点进入下载,比如:https://mirrors.evowise.com/pub/OpenBSD/OpenSSH/portable/

拉到页面最底部,选择最新版本的openssh下载,如openssh-7.4p1.tar.gz

 

2.安装

tar -zxf  openssh-7.4p1.tar.gz   #如果提示非tar文件,可在windows下先解压成.tar文件
cd openssh-7.4p1
./configure                               #检测环境是否满足
make                                      #编译
make install                             #安装

 

3.可能出现的问题

1)configure: error: *** zlib.h missing – please install first or check config.log

 yum install -y zlib-devel

2)configure: error: *** OpenSSL headers missing – please install first or check config.log

yum install -y openssl-devel

 

以上是关于openssh安装教程的主要内容,如果未能解决你的问题,请参考以下文章

VIM 代码片段插件 ultisnips 使用教程

Windows上安装配置SSH教程——综合应用:在Windows上使用手动方式实现SSH远程登陆与文件传输

如何在Cygwin中安装并配置SSH

Windows上安装配置SSH教程——几种方式对比

蓝易云:Linux系统sshd命令 – openssh服务器守护进程

Windows系统下安装Python的SSH模块教程