Debian/Ubuntu下编译安装qBittorrent

一、安装依赖环境

1、安装依赖包

apt-get install libboost-dev libboost-system-dev build-essential
apt-get install libboost-chrono-dev libboost-random-dev libssl-dev libgeoip-dev
apt-get install git pkg-config automake libtool

2、安装Qt5库

apt-get install qtbase5-dev qttools5-dev-tools

3、安装python和GeoIP数据库

apt-get install python
apt-get install geoip-database

二、安装Libtorrent

1、下载Libtorrent包并打开

git clone https://github.com/arvidn/libtorrent.git
cd libtorrent

2、选择1.0.*分支编译安装

git checkout RC_1_0
./autotool.sh
./configure --disable-debug --enable-encryption --prefix=/usr --with-libgeoip=system
make clean && make
make install

三、编辑安装qBittorrent

1、从github下载对应版本的QB安装包
QB历史版本下载:https://github.com/qbittorrent/qBittorrent/releases

如编译安装3.3.11版本的QB

wget https://github.com/qbittorrent/qBittorrent/archive/release-3.3.11.tar.gz
tar -xzvf release-3.3.11.tar.gz
cd qBittorrent-release-3.3.11

2、编译qBittorrent

./configure --prefix=/usr --disable-gui
make && make install

这里编译的时候如果提示错误 缺少 zlib 运行以下命令即可

apt-get install zlib1g-dev

四、运行qBittorrent

1、初始化QB

qbittorrent-nox

运行后会提示输入,输入y,然后回车即可,这时打开第3步中的地址,进入后打开设置,在WEBUI里将语言改成中文,然后Ctrl+C 结束,再次输入命令运行QB,这是刷新网页就是中文了,意思就是设置完需要重启下客户端才能使语言修改生效,其它设置类似。

2、在后台运行qBittorrent
因为直接运行QB,退出shell窗口的话就会关闭,所以我们可以用nohup的方式运行QB

nohup qbittorrent-nox &

这样QB就已经稳定在后台运行了,即使你关闭shell也不会结束的。

3、访问qBittorrent的Web-UI

默认地址: http://IP地址:8080
默认用户名: admin
默认密码: adminadmin

版权声明:
作者:admin
链接:http://www.bttme.com/archives/1312.html
来源:bttme
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>