首页
留言
统计
Looking Glass
常用脚本
关于
Search
1
linux设置ipv4优先或者ipv6优先
4,145 阅读
2
甲骨文oracle开启MFA(多因素验证)即两步验证图文教程
3,338 阅读
3
甲骨文oracle找回二次验证的方法
3,133 阅读
4
关于甲骨文Oracle Cloud 免费值不值得做站?-摘自LOc,感谢网友@冲浪麦浪花郎
1,903 阅读
5
新四大金刚:Pacificrack(PR)、Racknerd(RN)、Virmach(VIR)和Cloudcone(CC)口碑对比
1,735 阅读
默认评测
VPS推荐
口碑历史
福利消息
美区VPS
欧洲VPS
亚洲VPS
其它VPS
独立服务器
商家风云
技术流
登录
/
注册
Search
标签搜索
美国vps
大厂出品
日本vps
绿云
Virmach
greencloudvps
v.ps
搬瓦工
香港vps
xTom
德国vps
荷兰vps
大盘鸡
Linode
新加坡vps
独服
甲骨文
Oracle
gia
DMIT
VPS值
累计撰写
328
篇文章
累计收到
18
条评论
首页
栏目
默认评测
VPS推荐
口碑历史
福利消息
美区VPS
欧洲VPS
亚洲VPS
其它VPS
独立服务器
商家风云
技术流
页面
留言
统计
Looking Glass
常用脚本
关于
搜索到
1
篇与
的结果
2024-04-06
Debian12 编译安装qbittorrent
本教程适用于qBittorrent4.1.9-4.3.0.1或更新版本安装须知查阅https://github.com/arvidn/libtorrent步骤一:安装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 ServiceAfter=network.target[Service]LimitNOFILE=512000User=rootExecStart=/usr/local/bin/qbittorrent-noxExecStop=/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端口,用户名及密码接着:关闭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了!
2024年04月06日
117 阅读
0 评论
0 点赞