TranslateProject/translated/tech/20150506 Linux FAQs with Answers--How to install autossh on Linux.md

79 lines
2.8 KiB
Markdown
Raw Normal View History

2015-05-08 20:08:08 +08:00
Linux有问必答如何安装autossh
2015-05-06 09:39:24 +08:00
================================================================================
2015-05-08 20:08:08 +08:00
> **提问**: 我打算在linux上安装autossh我应该怎么做呢?
[autossh][1] 是一款开源工具可以帮助管理SSH会话自动重连和停止转发流量。autossh会假定目标主机已经设定[无密码SSH登陆][2]以便autossh可以重连断开的SSH会话而不用用户操作。
2015-05-06 09:39:24 +08:00
2015-05-08 20:08:08 +08:00
只要你建立[反向SSH隧道][3]或者[挂载基于SSH的远程文件夹][4]autossh迟早会派上用场。基本上只要需要维持SSH会话autossh肯定是有用的。
2015-05-06 09:39:24 +08:00
![](https://farm8.staticflickr.com/7786/17150854870_63966e78bc_c.jpg)
2015-05-08 20:08:08 +08:00
下面有许多linux发行版autossh的安装方法。
2015-05-06 09:39:24 +08:00
2015-05-08 20:08:08 +08:00
### Debian 或 Ubuntu 系统 ###
2015-05-06 09:39:24 +08:00
2015-05-08 20:08:08 +08:00
autossh已经加入基于Debian系统的基础库所以可以很方便的安装。
2015-05-06 09:39:24 +08:00
$ sudo apt-get install autossh
2015-05-08 20:08:08 +08:00
### Fedora 系统 ###
2015-05-06 09:39:24 +08:00
2015-05-08 20:08:08 +08:00
Fedora库同样包含autossh包使用yum安装。
2015-05-06 09:39:24 +08:00
$ sudo yum install autossh
2015-05-08 20:08:08 +08:00
### CentOS 或 RHEL 系统 ###
2015-05-06 09:39:24 +08:00
2015-05-08 20:08:08 +08:00
CentOS/RHEL 6 或早期版本, 需要开启第三库[Repoforge库][5], 然后才能使用yum安装.
2015-05-06 09:39:24 +08:00
$ sudo yum install autossh
2015-05-08 20:08:08 +08:00
CentOS/RHEL 7以后,autossh 已经不在Repoforge库中. 你需要从源码编译安装(例子在下面).
2015-05-06 09:39:24 +08:00
2015-05-08 20:08:08 +08:00
### Arch Linux 系统 ###
2015-05-06 09:39:24 +08:00
$ sudo pacman -S autossh
2015-05-08 20:08:08 +08:00
### Debian 或 Ubuntu 系统中从源码编译安装###
2015-05-06 09:39:24 +08:00
2015-05-08 20:08:08 +08:00
如果你想要使用最新版本的autossh你可以自己编译源码安装
2015-05-06 09:39:24 +08:00
$ 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
2015-05-08 20:08:08 +08:00
### CentOS, Fedora 或 RHEL 系统中从源码编译安装###
2015-05-06 09:39:24 +08:00
2015-05-08 20:08:08 +08:00
在CentOS/RHEL 7以后autossh不在是预编译包。所以你不得不从源码编译安装。
2015-05-06 09:39:24 +08:00
$ 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
--------------------------------------------------------------------------------
via: http://ask.xmodulo.com/install-autossh-linux.html
作者:[Dan Nanni][a]
2015-05-08 20:08:08 +08:00
译者:[Vic020/VicYu](http://vicyu.net)
2015-05-06 09:39:24 +08:00
校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创翻译,[Linux中国](https://linux.cn/) 荣誉推出
[a]:http://ask.xmodulo.com/author/nanni
[1]:http://www.harding.motd.ca/autossh/
[2]:http://xmodulo.com/how-to-enable-ssh-login-without.html
[3]:http://xmodulo.com/access-linux-server-behind-nat-reverse-ssh-tunnel.html
[4]:http://xmodulo.com/how-to-mount-remote-directory-over-ssh-on-linux.html
[5]:http://xmodulo.com/how-to-set-up-rpmforge-repoforge-repository-on-centos.html