1. 下载(安装 aria2 程序包(下载器):aria2 is a lightweight multi-protocol & multi-source, cross platform download utility operated in command-line. It supports HTTP/HTTPS, FTP, BitTorrent and Metalink )
cd /usr/local/src
git clone https://gitee.com/mirrors/aria2.git
  1. 安装 gettext 依赖包(不成功,暂时不开展)
su
cd /home/common
wget https://mirrors.aliyun.com/gnu/gettext/gettext-0.18.3.2.tar.gz
tar -zxvf gettext-0.18.3.2.tar.gz
cd gettext-0.18.3.2
./configure
make -j4
    # could not find libjava.so
    # Could not find Java SE Runtime Environment.
make install

ln /usr/local/bin/xgettext /bin/xgettext
ln /usr/local/bin/msguniq /bin/msguniq
ln /usr/local/bin/msgmerge /bin/msgmerge
  1. 编译安装
autoreconf -i
./configure
#./configure ARIA2_STATIC=yes
make