CentOS 7 安装 qBittorrent

编译安装太繁琐、坑多。

1,系统CentOS 7 执行以下命令。

sudo yum install qbittorrent-nox.x86_64

2,创建systemctl脚本

sudo vi /usr/lib/systemd/system/qbittorrent.service

使用vi、vim编辑,输入以下内容。

[Unit]
Description=qbittorrent torrent server

[Service]
User=<username>
ExecStart=/usr/bin/qbittorrent-nox
Restart=on-abort

[Install]
WantedBy=multi-user.target

注意修改为用户名,比如 root。修改完成保存即可。

载入以上配置

systemctl enable qbittorrent.service

3,初次运行设置

安装完成后请先启动一次qb。

qbittorrent-nox

初次启动需要同意其适用协议,按照其提示输入y回车即可。

使用ctrl+c退出

使用systemctl 让其后台运行

systemctl start qbittorrent.service

http://ip:8080 进入webUI

启动重启命令:

systemctl start qbittorrent.service #开启qb
systemctl stop qbittorrent.service #关闭qb
systemctl restart qbittorrent.service #重启qb

配置文件位置:

~/.config/qBittorrent/qBittorrent.conf

4,最后编译安装

参照以下链接:

https://www.fingertc.com/archives/287/

https://npchk.info/centos7-qbittorrent/

https://github.com/qbittorrent/qBittorrent/wiki/Compiling-qbittorrent-nox-for-CentOS-from-source


Debian 安装
apt-get install qbittorrent-nox

一键脚本

https://github.com/Aniverse/inexistence

文章目录