Skip to content

CentOS 安装 Aria2 下载工具

Published: at 01:53 PMSuggest Changes

这几天没事干,弄了个 Aria2 用于离线下载文件。

Aria2 介绍

aria2 is a lightweight multi-protocol & multi-source command-line download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and Metalink. aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces.

译文:aria2 是一个轻量级的多协议和多源命令行下载工具。它支持 HTTP / HTTPS,FTP,SFTP,BitTorrent 和 Metalink。aria2 可以通过内置的 JSON-RPC 和 XML-RPC 接口进行操作。

安装方式

yum install epel-release -y #安装 epel
yum install aria2 -y  #安装 aria2
mkdir /etc/aria2/  #新建配置文件夹
nano  /etc/aria2/aria2.conf  #新建配置文件,见下方配置文件内容

配置文件

#用户名
#rpc-user=user
#密码
#rpc-passwd=passwd
#上面的认证方式不建议使用,建议使用下面的 token 方式
#设置加密的密钥
#rpc-secret=token
#允许 rpc
enable-rpc=true
#允许所有来源,web 界面跨域权限需要
rpc-allow-origin-all=true
#允许外部访问,false 的话只监听本地端口
rpc-listen-all=true
#RPC 端口,仅当默认端口被占用时修改
rpc-listen-port=6800
#最大同时下载数 (任务数), 路由建议值:3
max-concurrent-downloads=5
#断点续传
continue=true
#同服务器连接数
max-connection-per-server=5
#最小文件分片大小,下载线程数上限取决于能分出多少片,对于小文件重要
min-split-size=10M
#单文件最大线程数,路由建议值:5
split=10
#下载速度限制
max-overall-download-limit=0
#单文件速度限制
max-download-limit=0
#上传速度限制
max-overall-upload-limit=0
#单文件速度限制
max-upload-limit=0
#断开速度过慢的连接
#lowest-speed-limit=0
#验证用,需要 1.16.1 之后的 release 版本
#referer=*
#文件保存路径,默认为当前启动位置
dir=/root/downloads
#文件缓存,使用内置的文件缓存,如果你不相信 Linux 内核文件缓存和磁盘内置缓存时使用
#disk-cache=0
#另一种 Linux 文件缓存方式
#enable-mmap=true
#文件预分配,能有效降低文件碎片,提高磁盘性能。缺点是预分配时间较长
file-allocation=prealloc<span data-mce-type="bookmark" style="display: inline-block; width: 0px; overflow: hidden; line-height: 0;" class="mce_SELRES_start"></span>

启动

启动测试:
aria2c --conf-path=/etc/aria2/aria2.conf
无错误后台启动:
aria2c --conf-path=/etc/aria2/aria2.conf -D

Previous Post
Nginx 反向代理 Google Font、Ajax 和 Gravatar 头像
Next Post
中国移动物联网麒麟版-mini 远程控制 LED 小灯