来吧兄弟,一起玩一起讨论!
您需要 登录 才可以下载或查看,没有账号?注册
×
本帖最后由 svdztn 于 2018-1-10 09:19 编辑
最近远程迅雷xware不能用了,打算用aria2替代,发现能直接用的版本都比较旧。就自己编译了一个1.32.0版(已更新至1.33.1),适用于DSM5.2,现在分享给大家。
前端web常用的有两个:
https://github.com/ziahamza/webui-aria2
https://github.com/binux/yaaw
前者界面更漂亮,但有些浏览器用不了,后者更简洁,更通用。
两者也可以同时用,很简单,打开webStation,放到指定目录下就行了。
aria2的具体使用方法就不说了,很多帖子里都写的很详细。
注意:由于DSM6与DSM5的C++库不兼容,此aria2不支持DSM6(经坛友在DSM6.13、DSM 6.1.4上测试)。
由于涉及到很多DSM中没有的库文件,运行aria2c之前记得设置一下动态库路径:
export LD_LIBRARY_PATH=/xxxxx/aria2/lib 复制代码 xxxxx为aria2所在目录
(当然也可以直接把aria2/lib下的库文件都放到/lib64目录下)
提供一个简单的控制脚本,路径、配置文件请根据自己的实际情况替换:#!/bin/sh
START()
{
export LD_LIBRARY_PATH=/xxxxx/aria2/lib
/xxxxx/aria2/bin/aria2c --conf=/xxxxx/aria2/aria2.conf -D
}
STOP()
{
NAME=$(ps | grep aria2c |grep -v grep | awk '{print $1}')
kill -9 $NAME
}
HELP()
{
echo "Usage: aria2.sh [start | stop]"
}
##-----------------Read Para-----------------##
while [ $# -gt 0 ]
do
case $1 in
start)
START
shift 1
;;
stop)
STOP
shift 1
;;
*)
HELP
exit 1
;;
esac
done
exit 0 复制代码
aria2更新编译至1.33.1版,修改日志:
引用库修改:
更新gnutls至3.6.1版;
更新libtasn1至4.12版;
更新nettle至3.3版;
更新p11-kit至0.23.2版,
解决下载某些https链接时,因ssl加密方式不支持导致下载失败的问题
(错误日志:SSL/TLS handshake failure: The signature algorithm is not supported. )。
官方修改日志:
Release Note
This release fixes a bug that causes high CPU usage in mingw build.
Changes
mingw: Fix high CPU usage in BitTorrent downloads
This commit fixes high CPU usage in BitTorrent downloads. Only
mingw build is affected by this bug.
Thank you kwkam for identifying the cause of the issue, and helping
debugging this patch.
https://github.com/aria2/aria2/releases
aria2_1.32.0_app.gz,aria2_1.33.1_app.gz下载:
个人很不喜欢加隐藏,但为了能和更多的人分享,不让帖子沉的太深,各位见谅。
webui-aria2:
webui-aria2
附aria2.conf:
(请根据自己实际情况配置)
aria2_conf.rar
(2.07 KB, 下载次数: 115)
webui-aria2配置方法见22楼:
http://www.gebi1.com/forum.php?m ... =274111&pid=5115199
aria2安装方法见40楼:
http://www.gebi1.com/forum.php?mod=redirect&goto=findpost&ptid=274111&pid=5117282
分享一些bt-tracker地址:https://github.com/ngosang/trackerslist
bt-tracker配置方法见167楼:
http://www.gebi1.com/forum.php?m ... =274111&pid=5186737
推荐另外一个WebUI:AriaNg。支持中文,aria2设置翻译的挺全,页面风格很像迅雷,同时对移动端的支持也不错。使用方法同webui-aria2(见22楼)
http://ariang.mayswind.net/zh_Hans/