在 Ubuntu Server 18.04 LTS 上搭建 qBittorrent
- Ubuntu 18.04.3 LTS (GNU/Linux 4.15.0-72-generic x86_64)
关于 qBittorent-nox 与 qBittorrent:
- qbittorrent 是带有桌面图形用户界面
- qbittorrent-nox 没有桌面图形用户界面,只有一个Web界面
安装 qBittorrent-nox
检查配置 software-properties-common
运行下面命令
1
sudo apt-get install -y software-properties-common
添加 PPA
qBittorrent stable 版本
1 |
|
更新源
1 |
|
开始安装并配置
在更新源完成后,安装 qBittorrent-nox
1 |
|
在 /etc/systemd/system/
创建服务
1 |
|
qbittorrent.service:1
2
3
4
5
6
7
8
9
10
11
12
13
14
15[Unit]
Description=qBittorrent Daemon Service
Documentation=man:qbittorrent-nox(1)
Wants=network-online.target
After=network-online.target nss-lookup.target
[Service]
# 如果systemd>=240,则可能需要改用 Type=exec
Type=simple
User=root # 替换成你运行的用户
ExecStart=/usr/bin/qbittorrent-nox
TimeoutStopSec=infinity
[Install]
WantedBy=multi-user.target
启动测试
1 |
|
您应该看到
1 |
|
按下 y 键
1 |
|
这时候 Web 面板已经开启成功,访问 http://ip:8080 输入
1 |
|
运行启动 qBittorrent
1 |
|
开机自启动
1 |
|
在 Ubuntu Server 18.04 LTS 上搭建 qBittorrent
https://blog.forgiveher.cn/posts/1578871376/