axel是一款多线程下载工具,同一个文件可以建立多个连接同时下载。
axel的下载和安装:
可以直接使用linux的aptget
apt-get install axel
axel参数如下
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 # 从x服务器搜索镜像并下载
--header=x -H x Add header string # 添加header字符串
--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 -n 10 -o /tmp/ http://www.linuxde.net/lnmp.tar.gz
注:网页相关简介提示,断网后重新输入一编命令,会断点续传(没试过)