一、编译安装
wget https://github.com/mydnsvip/Public/raw/master/axel-2.4.tar.gz tar zxvf axel-2.4.tar.gz cd axel-2.4 ./configure make -s make install -s
或者直接yum安装。
参数
[root@~]# axel -h Usage: axel [options] url1 [url2] [url...] --max-speed=x -s x Specify maximum speed (bytes per second) //速度限制 --num-connections=x -n x Specify maximum number of connections //连接数 --output=f -o f Specify local output file --search[=x] -S [x] Search for mirrors and download from x servers --header=x -H x Add header string --user-agent=x -U x Set user agent --no-proxy -N Just don't use any proxy server --quiet -q Leave stdout alone --verbose -v More status information --alternate -a Alternate progress indicator //进度条(交替显示) --help -h This information --version -V Version information
用法
axel -a -n 10 -s url
参数如下:
一般使用:axel url(下载文件地址);
限速使用:-s 10240,即每秒下载的字节数,这里是 10 Kb;
限制连接数:-n 10,即打开10个连接
axel -a -n 10 http://xxx.com/xxx.tar.gz
后台静默下载:
nohup axel -n 20 -o xxx.tar.gz http://xxx.com/xxx.tar.gz &
后台下载要加-o输出本地文件,否则不会执行。
本文原地址:https://blog.mydns.vip/1280.html
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-62778877-8261;邮箱:jenny@youkuaiyun.com。本站原创内容未经允许不得转载,或转载时需注明出处::优快云资讯门户 » linux环境多线程axel下载