天天看點

Linux中的下載下傳加速工具,很強悍!

 linux下,要下載下傳東西,我首先考慮的是驢子和BT,其他的下載下傳太慢了,直到我遇上了Axel。。。。

      看看介紹:

About:

Axel tries to accelerate downloads by using multiple connections (possibly to multiple servers) for one download. Because of its size, it might be very useful on bootdisks or other small systems as a wget replacement.

      好的,趕快下載下傳安 裝把,

      至于安裝,很簡單:

[[email protected] axel-1.0b]# ./configure --help

Axel configure

Usage: ./configure [OPTIONS]

Option    Description        Default

--prefix=...  Directories to put files in    /usr/local

--bindir=...            $prefix/bin

--etcdir=...            $prefix/etc

--mandir=...            $prefix/share/man

--locale=...            $prefix/share/locale

--i18n=0/1  Disable/enable internationalization  0

--debug=0/1  Disable/enable debugging    0

--strip=0/1  Disable/enable binary stripping    1

[[email protected] axel-1.0b]# ./configure --i18n=1    //enable internationalization

[[email protected] axel-1.0b]# make

[[email protected] axel-1.0b]# make install

安裝好之後,把它加載到YUM中,就可以加快yum更新下載下傳速度,基本能到全速! yum插件的源碼在google托管,于是 cd /usr/local/src/axel wget http://cnfreesoft.googlecode.com/svn/trunk/axelget/axelget.conf wget http://cnfreesoft.googlecode.com/svn/trunk/axelget/axelget.py cd /etc/yum/pluginconf.d/ ln -s /usr/local/src/axel/axelget.conf cd /usr/lib/yum-plugins/ ln -s /usr/local/src/axel/axelget.py 這樣啟動yum時就會自動加載插件了

繼續閱讀