在Linux下安装autossh的教程
程序员文章站
2022-09-11 18:46:45
这篇文章主要介绍了在Linux下安装autossh的教程,autossh主要被用于管理SSH会话,需要的朋友可以参考下... 15-05-28...
是一款开源工具,可以帮助管理ssh会话、自动重连和停止转发流量。autossh会假定目标主机已经设定无密码ssh登陆,以便autossh可以重连断开的ssh会话而不用用户操作。
只要你建立反向ssh隧道或者挂载基于ssh的远程文件夹,autossh迟早会派上用场。基本上只要需要维持ssh会话,autossh肯定是有用的。
下面有许多linux发行版autossh的安装方法。
debian 或 ubuntu 系统
autossh已经加入基于debian系统的基础库,所以可以很方便的安装。
复制代码
代码如下: $ sudo apt-get install autossh
fedora 系统
fedora库同样包含autossh包,使用yum安装。
复制代码
代码如下:$ sudo yum install autossh
centos 或 rhel 系统
centos/rhel 6 或早期版本, 需要开启第三库repoforge库, 然后才能使用yum安装.
复制代码
代码如下:$ sudo yum install autossh
centos/rhel 7以后,autossh 已经不在repoforge库中. 你需要从源码编译安装(例子在下面)。
arch linux 系统
复制代码
代码如下:$ sudo pacman -s autossh
debian 或 ubuntu 系统中从源码编译安装
如果你想要使用最新版本的autossh,你可以自己编译源码安装
复制代码
代码如下:$ sudo apt-get install gcc make
$ wget http://www.harding.motd.ca/autossh/autossh-1.4e.tgz
$ tar -xf autossh-1.4e.tgz
$ cd autossh-1.4e
$ ./configure
$ make
$ sudo make install
$ wget http://www.harding.motd.ca/autossh/autossh-1.4e.tgz
$ tar -xf autossh-1.4e.tgz
$ cd autossh-1.4e
$ ./configure
$ make
$ sudo make install
centos, fedora 或 rhel 系统中从源码编译安装
在centos/rhel 7以后,autossh不在是预编译包。所以你不得不从源码编译安装。
复制代码
代码如下:$ sudo yum install wget gcc make
$ wget http://www.harding.motd.ca/autossh/autossh-1.4e.tgz
$ tar -xf autossh-1.4e.tgz
$ cd autossh-1.4e
$ ./configure
$ make
$ sudo make install
$ wget http://www.harding.motd.ca/autossh/autossh-1.4e.tgz
$ tar -xf autossh-1.4e.tgz
$ cd autossh-1.4e
$ ./configure
$ make
$ sudo make install
上一篇: 在Linux下使用Prips打印指定范围内的IP地址的方法
下一篇: 14个grep命令使用例子
推荐阅读
-
在Vultr VPS主机上安装使用Windows Server的教程及评测
-
Linux系统下安装android sdk的方法步骤
-
node安装--linux下的快速安装教程
-
windows下安装mysql-8.0.18-winx64的教程(图文详解)
-
linux下配置和安装KVM虚拟机的步骤
-
Oracle VM VirtualBox 在linux系统下安装增强插件实现访问主机的共享文档方法
-
在Centos7中安装Docker1.12的详细教程
-
sql server 2005 在 windows7 下的安装教程
-
在电脑上安装配置使用安卓Android模拟器的方法(图文教程)
-
在Linux上将文本文件转换成PDF格式的教程