前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >命令行的"迅雷",这样用会更香

命令行的"迅雷",这样用会更香

作者头像
章鱼猫先生
发布2021-10-15 13:39:51
2K0
发布2021-10-15 13:39:51
举报
文章被收录于专栏:BioIT爱好者

王通老师在他的 "基因学苑" 公众号,发表过一篇《命令行的“迅雷”,提升百倍以上下载速率》的文章,给我们简单介绍了 axel 这个命令行下多线程下载的利器。本公众号也有幸转载过,但在实际使用中 axel 还是有几点不为人知小秘密,今天来聊一下。

直接安装

有源的情况下,axel 在 CentOS 可以通过 yum 的方式直接安装:

代码语言:javascript
复制
yum install -y axel

没有源的情况下,在 CentOS 6/7 中可以先添加 Epel 源再安装:

代码语言:javascript
复制
yum install epel-release
yum install axel

或者通过 rpm 的方式安装:

代码语言:javascript
复制
rpm -ivh ftp://fr2.rpmfind.net/linux/dag/redhat/el6/en/x86_64/dag/RPMS/axel-2.4-1.el6.rf.x86_64.rpm

对于 Debian/Ubuntu 中安装 Axel,有源的情况可以参考下面的安装方式;无源情况下的安装可以参考源码或者其他的安装方式,这里不细说:

代码语言:javascript
复制
apt-get install axel

源码安装

axel 的源码是托管在 Github 上的,我们可以下载它的源码进行手动安装。

源码下载,启动安装

下载源码,并生成用于 axel 安装的 configure 可执行文件:

代码语言:javascript
复制
$ git clone https://github.com/axel-download-accelerator/axel.git
$ cd axel/
$ autoreconf -i
Copying file ABOUT-NLS
Creating directory build-aux
Copying file build-aux/config.rpath
...
Copying file po/Rules-quot
configure.ac:13: error: Autoconf version 2.69 or higher is required
configure.ac:13: the top level
autom4te: /usr/bin/m4 failed with exit status: 63
aclocal: autom4te failed with exit status: 63
autoreconf: aclocal failed with exit status: 63
安装 Autoconf-2.69 依赖
代码语言:javascript
复制
$ wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz
$ tar zvxf autoconf-2.69.tar.gz
$ cd autoconf-2.69
$ ./configure --prefix=/usr/local/software/autoconf-2.69
$ make && make install
$ export PATH=/usr/local/software/autoconf-2.69/bin:$PATH  # 也可以把 autoconf 添加到 ~/.bashrc
安装 gettext-devel 依赖
代码语言:javascript
复制
$ autoreconf -i          
Can't exec "autopoint": No such file or directory at /usr/share/autoconf/Autom4te/FileUtils.pm line 345.
autoreconf: failed to run autopoint: No such file or directory
autoreconf: autopoint is needed because this package uses Gettext

可以通过 yum 安装 gettext-devel 解决:

代码语言:javascript
复制
$ yum install -y gettext-devel
安装 autoconf-archive 依赖
代码语言:javascript
复制
$ autoreconf -i 
$ ./configure --prefix=/usr/local/software/axel
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
......
checking dependency style of gcc... (cached) gcc3
checking for gcc option to accept ISO C99... -std=gnu99
./configure: line 5358: syntax error near unexpected token `git-directory'
./configure: line 5358: `AX_IS_RELEASE(git-directory)'

解决方法一,通过 yum 安装 autoconf-archive

代码语言:javascript
复制
[root@ecs-steven ~]# yum install autoconf-archive

解决方法二,手动安装 autoconf-archive

代码语言:javascript
复制
$ wget http://mirrors.nju.edu.cn/gnu/autoconf-archive/autoconf-archive-2019.01.06.tar.xz
$ tar xvJf autoconf-archive-2019.01.06.tar.xz
$ cd autoconf-archive-2019.01.06
$ ./configure --prefix=/usr/local/software/autoconf-archive-2019.01.06
$ make 
$ make install

注意:

  1. 如果你使用 --prefix 指定了 autoconf-archive 的安装路径,在安装 axel 的时候需要额外指定 autoconf-archive 的 m4 文件路径:
代码语言:javascript
复制
$ autoreconf -i -I/usr/local/software/autoconf-archive-2019.01.06/share/aclocal 
  1. 我在 CentOS 6.5 下使用了自定义的 autoconf-archive 的安装路径,在 configure 时总是提示 invalid date 错误,make 的时候更是直接抛出 axel_gettime 函数错误:
代码语言:javascript
复制
$ autoreconf -i -I/usr/local/software/autoconf-archive-2019.01.06/share/aclocal 
$ ./configure --prefix=/usr/local/software/axel
......
checking for PTHREAD_PRIO_INHERIT... yes
date: invalid date `2019-08-29T19:39:14Z'
configure: creating ./config.status
....

$ make 
...
cc1: warnings being treated as errors
src/axel.c: In function ‘axel_gettime’:
src/axel.c:720: error: declaration of ‘time’ shadows a global declaration
/usr/include/time.h:186: error: shadowed declaration is here
At top level:
cc1: error: unrecognized command line option "-Wno-suggest-attribute=format"
make[2]: *** [src/axel.o] Error 1
make[2]: Leaving directory `/usr/local/src/axel'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/local/src/axel'
make: *** [all] Error 2

尝试了各种方法后,直到我用自己安装的 gcc-4.8.5 替换系统默认的 gcc-4.4.7 后,才成功解决这个问题,个中具体原因熟悉 C 的童鞋可以研究下。

代码语言:javascript
复制
$ ./configure --prefix=/usr/local/software/axel CC=/usr/local/software/gcc-4.8.5/bin/gcc
安装 txt2man 依赖
代码语言:javascript
复制
$ autoreconf -i -I/usr/local/autoconf-archive-2019.01.06/share/aclocal 
$ ./configure --prefix=/usr/local/software/axel CC=/usr/local/software/gcc-4.8.5/bin/gcc
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
......
configure: creating ./config.status
config.status: creating Makefile
config.status: creating po/Makefile.in
config.status: WARNING:  'po/Makefile.in.in' seems to ignore the --datarootdir setting
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing default-1 commands
config.status: creating po/POTFILES
config.status: creating po/Makefile

$ make
make  all-recursive
make[1]: Entering directory `/usr/local/src/axel'
Making all in po
...
/bin/sh: line 1: txt2man: command not found
make[2]: *** [doc/axel.1] Error 1
make[2]: Leaving directory `/usr/local/src/axel'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/local/src/axel'
make: *** [all] Error 2

解决方法一, yum 一键安装。

代码语言:javascript
复制
yum install txt2man

解决方法二,源码手动安装。

代码语言:javascript
复制
$ wget http://mvertes.free.fr/download/txt2man-1.5.6.tar.gz
$ tar zvxf txt2man-1.5.6.tar.gz                          
$ cp -r txt2man-1.5.6 /usr/local/software               # txt2man 无需安装,直接解压即可
$ export PATH=/usr/local/software/txt2man-1.5.6:$PATH   # 你也可以把它添加到 ~/.bashrc
继续安装 axel

上面的依赖都解决后,我们就可以继续后面的 axel 安装了。

代码语言:javascript
复制
$ make 
$ make install

Too many redirects

如果你在使用 axel 下载 https 相关的资源,你可能会发现:

这是因为,CentOS 中通过 yum 方式安装的 axel 默认版本为 2.4,而该版本的 axel 对于 h 开头的链接会默认使用 http(port 80) 的协议进行下载,对于 f 开头的链接会默认使用 ftp 的协议,如果 axel 遇上了强制使用 https 的网站链接,就会出现这个反复重定向的错误。

针对这种情况,请参考上面的 "源码安装" 安装 axel 的最新版本!安装完了以后,即可以下载 https 相关的资源。

阿里云 1Mbps 的 ECS 上闲时的 axel 下载速度

——The End——


本文参与 腾讯云自媒体同步曝光计划,分享自微信公众号。
原始发表:2019-11-30,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 BioIT爱好者 微信公众号,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 直接安装
  • 源码安装
    • 源码下载,启动安装
      • 安装 Autoconf-2.69 依赖
        • 安装 gettext-devel 依赖
          • 安装 autoconf-archive 依赖
            • 安装 txt2man 依赖
              • 继续安装 axel
              • Too many redirects
              领券
              问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档