如何挂PT和BT: Ubuntu安装qBittorrent webui (qbittorrent-nox)

如何挂PT和BT: Ubuntu安装qBittorrent webui (qbittorrent-nox)

V+变量
2024-12-04 / 0 评论 / 21 阅读 / 正在检测是否收录...

1.添加源

sudo add-apt-repository ppa:qbittorrent-team/qbittorrent-stable
sudo apt update

2.安装
成功添加源后,更新包的信息,再安装qBittorrent webui:

sudo apt install qbittorrent-nox

3.启动
成功安装后,输入以下命令启动软件:

qbittorrent-nox

启动后,在浏览器中输入http://ip地址:8080,即可打开qBittorrent的网页端。默认的用户名是admin,默认密码为adminadmin。如果要使用其他端口,只需在启动命令中加入--webui-port=XXXX参数,其中XXXX为端口号:

qbittorrent-nox --webui-port=XXXX

4.设置开机自启动
在 /etc/systemd/system 下,新建文件 qbittorrent-nox.service ,

vim /etc/systemd/system/qbittorrent-nox.service

内容如下

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

[Service]
User=root
Type=forking
RemainAfterExit=yes
ExecStart=/usr/bin/qbittorrent-nox -d

[Install]
WantedBy=multi-user.target

再执行以下命令:

systemctl enable qbittorrent-nox

下一次开机时会自动启动qbittorent。如果要手动开启、停止和重启,参考以下命令:

sudo service qbittorrent-nox start
sudo service qbittorrent-nox stop
sudo service qbittorrent-nox restart

配置
QBittorrent webui的配置文件qBittorrent.conf在~/.config/qBittorrent/文件夹中。

更多命令

启动  qbittorrent-nox
后台启动  qbittorrent-nox -d
查看版本  qbittorrent-nox -v
获得帮助  qbittorrent-nox -h
0

评论 (0)

取消