devome / dockerfiles

一些Dockerfile
https://evine.win
GNU General Public License v3.0
200 stars 22 forks source link

建议发布 libtorrentv1 镜像 #136

Closed yueban closed 1 month ago

yueban commented 1 month ago

libtorrent v2.0 存在严重的 io 性能问题,详见下面这篇文章。 https://www.baiblog.ren/posts/2023/qBittorrent_CIFS_IO_Performance_Issues

我自己升级 qbitorrent 4.6.x 半年来,也确实发现存在此问题。之前下载可以跑满带宽 100m/s,升级后基本保持在 20m/s。统计弹窗显示写入缓存超负荷会在几秒内上升至 30%,然后回归 0,循环往复。

感谢大佬的项目,已使用2年有余,很大地方便了种子管理。希望大佬闲暇之余可以考虑出一个 4.6.7 libtorrentv1 的镜像,万分感谢。

devome commented 1 month ago

可以自己编译指定libtorrent-rasterbar的版本为v1,克隆本仓库,在qbittorrent目录下运行以下命令:

docker build -t qbittorrent --build-arg LIBTORRENT_VERSION=1 --build-arg QBITTORRENT_VERSION=4.6.7 .
yueban commented 1 month ago

好的,我试试。