qBittorrent: https://github.com/qbittorrent/qBittorrent

没有图形界面的运行,文档: https://github.com/qbittorrent/qBittorrent/wiki/Running-qBittorrent-without-X-server-(WebUI-only,-systemd-service-set-up,-Ubuntu-15.04-or-newer)

预编译: https://github.com/userdocs/qbittorrent-nox-static/releases

也可以用包管理直接安装,但是一般不是最新版本:

shell
sudo apt install qbittorrent-nox
shell
./aarch64-qbittorrent-nox --webui-port=8080

第一次启动会有法律声明,需要回车确认。

登陆后可以在web页面配置密码。

开机自启动

systemd

这里通过创建自定义开机服务实现,先创建系统服务

sudo nano /etc/systemd/system/qbittorrent-nox.service

粘贴以下内容,保存ctr+o,ctr+x退出

[Unit]
Description=qBittorrent-nox
After=network.target

[Service]
User=root
Type=simple
RemainAfterExit=yes
ExecStart=/usr/bin/qbittorrent-nox --webui-port=8080 -d

[Install]
WantedBy=multi-user.target

shell
sudo systemctl daemon-reload  
# 重新加载systemd守护程序  
systemctl enable qbittorrent-nox  
# 使qbittorrent-nox.service生效  
systemctl start qbittorrent-nox  
# 启动qbittorrent-nox

supervisord