qBittorrent: https://github.com/qbittorrent/qBittorrent
预编译: https://github.com/userdocs/qbittorrent-nox-static/releases
也可以用包管理直接安装,但是一般不是最新版本:
sudo apt install qbittorrent-nox
./aarch64-qbittorrent-nox --webui-port=8080
第一次启动会有法律声明,需要回车确认。
登陆后可以在web页面配置密码。
这里通过创建自定义开机服务实现,先创建系统服务
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
sudo systemctl daemon-reload
# 重新加载systemd守护程序
systemctl enable qbittorrent-nox
# 使qbittorrent-nox.service生效
systemctl start qbittorrent-nox
# 启动qbittorrent-nox