时间:2015-05-18 15:32:18 作者:小兰 来源:系统之家 1. 扫描二维码随时看资讯 2. 请使用手机浏览器访问: https://m.xitongzhijia.net/xtjc/20150518/48611.html 手机查看 评论 反馈
Linux用户都需要经常访问SSH服务器,因此,为了方便我们的使用,不少用户会在自己的电脑上安装autossh,它可以帮助我们管理SSH会话、自动重连和停止转发流量。那么如何在我们的电脑中安装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 https://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 https://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系统中安装autossh 的方法了,还不知道如何安装autossh 或者对autossh 感兴趣的用户,就用上面的方法进行安装吧。
发表评论
共0条
评论就这些咯,让大家也知道你的独特见解
立即评论以上留言仅代表用户个人观点,不代表系统之家立场