aria2 linux 手动安装,Linux安装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。可以通过内置的JSON-RPC和XML-RPC接口操作aria2。

废话不多说,下面开始安装aria2。

安装步骤:

ubuntu的用户可以直接使用下面命令完成aria2的安装:

sudo apt-get install aria2

下面是我在centos下的安装:

step1: 下载

到githup上获取源码:

我使用的是这个版本:

cd /usr/local/src && wget https://github.com/aria2/aria2/releases/download/release-1.33.0/aria2-1.33.0.tar.gz

step2: 升级gcc

编译aria2需要升级一下gcc,最低要求 gcc >= 4.8.2,如果你的gcc已经在符合这个要求就可以跳到下一步了

复制下面代码,保存为:update_gcc.sh

按 Ctrl+C 复制代码

按 Ctrl+C 复制代码

给予update_gcc.sh文件可执行权限并执行

chmod 754 update_gcc.sh && ./update_gcc.sh

* 在执行之前需要确保安装了wget,如果没有wget的话,脚本执行会报错!!!

等待完成!!!

step3: 解压并开始编译安装

tar zxvf aria2-1.33.0.tar.gz && cd aria2-1.33.0 && mkdir build && cd build && ../configure && make && make install

比较长时间的等待~~

step4: 创建目录与配置文件

# 这一步需要切换到root下进行

# 需要 su 一下

cd /etc/ && mkdir aria2 && cd aria2 && touch aria2c.conf &&

你可能感兴趣的:(aria2,linux,手动安装)