Debian12 编译安装qbittorrent

308次阅读
没有评论

共计 1688 个字符,预计需要花费 5 分钟才能阅读完成。

步骤一:安装 libtorrent

1. 先安装依赖包:

apt update
apt install build-essential pkg-config automake libtool git libgeoip-dev python3 python3-dev
apt install libboost-dev libboost-system-dev libboost-chrono-dev libboost-random-dev libssl-dev
apt install qtbase5-dev qttools5-dev-tools libqt5svg5-dev zlib1g-dev
​

2. 安装 libtorrent 1.2.19:

wget https://github.com/arvidn/libtorrent/releases/download/v1.2.19/libtorrent-rasterbar-1.2.19.tar.gz
tar xf libtorrent-rasterbar-1.2.19.tar.gz
cd libtorrent-rasterbar-1.2.19
./configure --disable-debug --enable-encryption --with-libgeoip=system CXXFLAGS=-std=c++17
make -j$(nproc)
make install
ldconfig

注意提示,有可能 c ++ 版本不适合你的系统,可自主选择,如 CXXFLAGS=-std=c++17

步骤二:安装 qBittorrent

下载地址:https://github.com/qbittorrent/qBittorrent/tags
可自行选择版本 qBittorrent4.3.9 为例

wget https://github.com/qbittorrent/qBittorrent/archive/refs/tags/release-4.3.9.tar.gz
tar xf release-4.3.9.tar.gz
cd qBittorrent-release-4.3.9
./configure --disable-gui --disable-debug
make -j$(nproc)
make install


步骤三:设置开机自启

编辑:
nano /etc/systemd/system/qbittorrent.service

输入以下内容:

[Unit]
Description=qBittorrent Daemon Service
After=network.target

[Service]
LimitNOFILE=512000
User=root
ExecStart=/usr/local/bin/qbittorrent-nox
ExecStop=/usr/bin/killall -w qbittorrent-nox

[Install]
WantedBy=multi-user.target

启用以上设置:

systemctl enable qbittorrent.service

步骤四:首次启动 qBittorrent(首次启动请按 y 确认条款)

qbittorrent-nox

按 Ctrl+ C 退出

后台运行 qBittorrent:

systemctl start qbittorrent.service

安装完成

访问 WebUI:http:// 你的 IPADDRESS:8080/
默认用户名:admin
默认密码:adminadmin

为了安全,可修改 8080 端口,用户名及密码
Debian12 编译安装 qbittorrent

接着:
关闭 qBittorrent 命令:

systemctl stop qbittorrent.service

启动 qBittorrent 命令:

systemctl start qbittorrent.service

重启 qBittorrent 命令:

systemctl restart qbittorrent.service

步骤五:创建下载文件夹和设置权限

现在目录可根据自己设置
mkdir /home/Downloads
chmod 777 /home/Downloads


把下载路径设置到 /home/Downloads 就 OK 了!

正文完
 0
admins
版权声明:本站原创文章,由 admins 于2024-06-09发表,共计1688字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
评论(没有评论)