一、大佬们,我做为新手,有下面的问题:
1、免费种的订阅有没有更好的方式,nexusphp貌似只支持nexus架构
2、种子删除的策略应该怎么调整
3、有没有更好的搭建方案
二、目前我自己的方案如下
1、订阅免费种子用的是flexget,具体配置参考flexget-nexusphp官方
2、下载使用的是deluge2.x
3、删除种子使用的是autoRemoveTorrents,具体配置如下
```
deluge-remove:
client: deluge
host: 127.0.0.1:58846
username: youdao
password: xxxyyy
strategies:
# 剩余空间小于100G,删除最老的种子
delete_by_restspace:
free_space:
min: 100 # size in GiB
path: /home/youdao/torrents/deluge/ # This Path MUST EXIST
action: remove-old-seeds
# 已连接下载者少于2人或者做种者数大于3人
delete_by_peernumber:
status:
- Downloading
remove: connected_leecher < 2 or seeder > 3
# 分享率大于3或者做种时间超过1.5天
delete_by_ratio:
remove: ratio > 3 or seeding_time > 129600
# 错误的种子,存在时间超过3小时
delete_by_error_status:
status:
- Error
create_time : 10800
# 做种者数超过10人并且做种时间超过2小时并且上传速度少于128
delete_by_seeder:
remove: seeder > 10 and (seeding_time > 7200 and upload_speed < 128)
# 创建时间超过2天
delete_by_create_time:
remove: create_time > 172800
# 删除大种子慢车,已经产生不了多少数据
delete_by_big_size:
status:
- Downloading
remove: download_speed > 10240 and upload_speed < 1024 and progress > 60 and size > 80 and ratio < 0.2
delete_data: true
```
1、免费种的订阅有没有更好的方式,nexusphp貌似只支持nexus架构
2、种子删除的策略应该怎么调整
3、有没有更好的搭建方案
二、目前我自己的方案如下
1、订阅免费种子用的是flexget,具体配置参考flexget-nexusphp官方
2、下载使用的是deluge2.x
3、删除种子使用的是autoRemoveTorrents,具体配置如下
```
deluge-remove:
client: deluge
host: 127.0.0.1:58846
username: youdao
password: xxxyyy
strategies:
# 剩余空间小于100G,删除最老的种子
delete_by_restspace:
free_space:
min: 100 # size in GiB
path: /home/youdao/torrents/deluge/ # This Path MUST EXIST
action: remove-old-seeds
# 已连接下载者少于2人或者做种者数大于3人
delete_by_peernumber:
status:
- Downloading
remove: connected_leecher < 2 or seeder > 3
# 分享率大于3或者做种时间超过1.5天
delete_by_ratio:
remove: ratio > 3 or seeding_time > 129600
# 错误的种子,存在时间超过3小时
delete_by_error_status:
status:
- Error
create_time : 10800
# 做种者数超过10人并且做种时间超过2小时并且上传速度少于128
delete_by_seeder:
remove: seeder > 10 and (seeding_time > 7200 and upload_speed < 128)
# 创建时间超过2天
delete_by_create_time:
remove: create_time > 172800
# 删除大种子慢车,已经产生不了多少数据
delete_by_big_size:
status:
- Downloading
remove: download_speed > 10240 and upload_speed < 1024 and progress > 60 and size > 80 and ratio < 0.2
delete_data: true
```