Gargoyle 安装 Aria2 、Transmission、Hd-idle 
XMit Lv3

Aria2 安装

使用 ssh 的方式登入路由器

1
ssh root@192.168.1.1

在 Gargoyle 固件下安装 aria2 下载工具

1
2
opkg update
opkg install aria2

启动 aria2 并进行验证(两种启动方式)

1
2
3
4
5
# 用参数命令的方式启动
aria2c --enable-rpc --rpc-listen-all=true --rpc-allow-origin-all -c

# 用配置文件的方式去启动(前提是你得在路由器里面部署好了配置文件)
aria2c --conf-path=/etc/aria2/aria2.conf

手动创建 aria2 的配置文件

1
2
3
4
5
mkdir /etc/aria2 # 在/etc下创建aria2目录

touch /etc/aria2/aria2.conf # 在/etc/aria2下创建aria2的配置文件

touch /etc/aria2/aria2.session # 在/etc/aria2下创建aria2的运行记录文件

编辑 aria2.conf 文件

1
vi /etc/aria2/aria2.conf

aria2.conf 内容如下(这种配置文件网络上一搜一大把,具体还得看自己怎么配置)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#允许rpc
enable-rpc=true
#允许所有来源, web界面跨域权限需要
rpc-allow-origin-all=true
#允许非外部访问
rpc-listen-all=true
#RPC端口, 仅当默认端口被占用时修改
rpc-listen-port=6800
# 保存日志到文件,没有该文件用 touch 命令新建,不然会报错
log=/mnt/upan/aria2.log

disable-ipv6=true
#最大同时下载数(任务数), 路由建议值: 3
max-concurrent-downloads=3
#断点续传
continue=true
#同服务器连接数
max-connection-per-server=10
#最小文件分片大小, 下载线程数上限取决于能分出多少片, 对于小文件重要
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=*

input-file=/etc/aria2/aria2.session
save-session=/etc/aria2/aria2.session
#定时保存会话,需要1.16.1之后的release版
save-session-interval=60

#文件保存路径, 默认为当前启动位置(这里的下载目录具体还得看你自己是怎么设置的)
dir=/mnt/sda1/download
#文件缓存, 使用内置的文件缓存, 如果你不相信Linux内核文件缓存和磁盘内置缓存时使用, 需要1.16及以上版本
#disk-cache=0
#另一种Linux文件缓存方式, 使用前确保您使用的内核支持此选项, 需要1.15及以上版本(?)
#enable-mmap=true
#文件预分配, 能有效降低文件碎片, 提高磁盘性能. 缺点是预分配时间较长
#所需时间 none < falloc ? trunc << prealloc, falloc和trunc需要文件系统和内核支持
file-allocation=none

#启用本地节点查找
bt-enable-lpd=true
#添加额外的tracker
#bt-tracker=<URI>,…
#单种子最大连接数
#bt-max-peers=55
#强制加密, 防迅雷必备
#bt-require-crypto=true
#当下载的文件是一个种子(以.torrent结尾)时, 自动下载BT
follow-torrent=true
#BT监听端口, 当端口屏蔽时使用
#listen-port=6881-6999

#不确定是否需要,为保险起见,need more test
enable-dht=true
bt-enable-lpd=true
enable-peer-exchange=true
#修改特征
user-agent=uTorrent/2210(25130)
peer-id-prefix=-UT2210-
#修改做种设置, 允许做种
seed-ratio=0
#保存会话
force-save=true
bt-hash-check-seed=true
bt-seed-unverified=true
bt-save-metadata=true

把 aria2 加入开机启动

1
vi /etc/rc.local

在 rc.local 文件的 exit 0 前面加入以下内容

1
aria2c --conf-path=/etc/aria2/aria2/conf -D

到此就完成了 Gargoyle for aria2 的安装

Transmission 安装

1
2
opkg update
opkg install transmission-daemon transmission-web

加入开机启动

1
/etc/init.d/transmission enable

开始运行 transmission

1
/etc/init.d/transmission start

修改配置文件

1
/etc/config/transmission

一般只需要修改几个地方就行,比如 config_dir(这个是你的放配置目录), download_dir(下载目录), and incomplete_dir(未下载完成目录)

官方例子

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
config transmission
option enable 1
option config_dir '/etc/transmission'
option alt_speed_down 50
option alt_speed_enabled false
option alt_speed_time_begin 540
option alt_speed_time_day 127
option alt_speed_time_enabled false
option alt_speed_time_end 1020
option alt_speed_up 50
option bind_address_ipv4 '0.0.0.0'
option bind_address_ipv6 '::'
option blocklist_enabled false
option dht_enabled true
option download_dir '/mnt/sda4/'
option encryption 1
option incomplete_dir '/mnt/sda4/incomplete'
option incomplete_dir_enabled false
option lazy_bitfield_enabled true
option lpd_enabled false
option message_level 2
option open_file_limit 32
option peer_limit_global 240
option peer_limit_per_torrent 60
option peer_port 51413
option peer_port_random_high 65535
option peer_port_random_low 49152
option peer_port_random_on_start false
option peer_socket_tos 0
option pex_enabled true
option port_forwarding_enabled false
option preallocation 1
option proxy ""
option proxy_auth_enabled false
option proxy_auth_password ''
option proxy_auth_username ''
option proxy_enabled false
option proxy_port 80
option proxy_type 0
option ratio_limit 2.0000
option ratio_limit_enabled false
option rename_partial_files true
option rpc_authentication_required false
option rpc_bind_address '0.0.0.0'
option rpc_enabled true
option rpc_password ''
option rpc_port 9091
option rpc_username ''
option rpc_whitelist '*.*.*.*' # 打不开请修改成这样
option rpc_whitelist_enabled true
option script_torrent_done_enabled false
option script_torrent_done_filename ''
option speed_limit_down 100
option speed_limit_down_enabled false
option speed_limit_up 40
option speed_limit_up_enabled true
option start_added_torrents false
option trash_original_torrent_files false
option umask 18
option upload_slots_per_torrent 14
option watch_dir_enabled false
option watch_dir ''

安装 Hd-idle (硬盘休眠服务)

1
2
opkg update
opkg install hd-idle

修改配置文件

1
vi /etc/config/hd-idle
1
2
3
4
5
6
config 'hd-idle'
option 'disk' 'sda' # 这里修改成你的下载目录
option 'enable_debug' '0'
option 'enabled' '0'
option 'idle_time_unit' 'minutes' # 默认是分钟,其它选项有'days', 'hours', 'minutes' or 'seconds'
option 'idle_time_interval' '10' # 修改你需要休眠的时间
由 Hexo 驱动 & 主题 Keep
本站由 提供部署服务