Linux下安装autossh

2023年 7月 1日 发表评论
腾讯云正在大促:点击直达 阿里云超级红包:点击领取
免费/便宜/高性价比服务器汇总入口(已更新):点击这里了解

Linux下安装autossh

autossh 是一款开源工具,可以帮助管理SSH会话、自动重连和停止转发流量。autossh会假定目标服务器已经设定无密码SSH登陆,以便autossh可以重连断开的SSH会话而不用用户操作。

下面有许多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,你可以自己编译源码安装

代码如下:

wget http://www.harding.motd.ca/autossh/autossh-1.4e.tgz cd autossh-1.4e make$ sudo make install

CentOS, Fedora 或 RHEL 系统中从源码编译安装

在CentOS/RHEL 7以后,autossh不在是预编译包。所以你不得不从源码编译安装。

代码如下:

wget http://www.harding.motd.ca/autossh/autossh-1.4e.tgz cd autossh-1.4e make$ sudo make install

本文来源:www.lxlinux.net/6938.html,若引用不当,请联系修改。

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: