1. Download aria2
Go to official GitHub download ARIA2
Select 1.32.0
This version and then download
PS: As long as 1.32.0
the version is greater than do not know why the compilation failed, 1.32.0
is able to compile the latest version of success
# 下载wget https://github.com/aria2/aria2/releases/download/release-1.32.0/aria2-1.32.0.tar.bz2# 解压tar -xvf aria2-1.32.0.tar.bz2
2. Install GCC and enable c++11
Installation method
3. Compiling the installation
# 进入aria2cd aria2-1.32.0# 编译,等待完成,时间会有点长./configuremake# 安装make install# 查看是否安装成功aria2c -v
PS: If this error is reported in the compilation process "g++: Internal compiler error:killed (program Cc1plus)," the "A Full bug report", this error is largely due to the memory Insufficient, Solution
4. Start
# 下载配置文件# 具体配置文档:http://www.senra.me/aria2-conf-file-parameters-translation-and-explanation/wget https://files.cnblogs.com/files/ystrdy/aria2.tar# 解压配置文件tar -xvf aria2.tar# 创建session文件touch aria2.session# 创建下载目录mkdir downloads# 启动aria2# 正常使用 aria2 --conf-path aria2.conf -D# 来启动后台运行,但是不知道为什么,运行不起来# 简单点,直接用nohup吧nohup>2>&1&
5. Install the UI
UI Download
The above is the whole process that I install in Ubuntu16.4, record
ubuntu16.04 under Installation aria2