目前感觉比较好用的PT客户端是qBittorrent,Windows下和Linux下使用的都是这个版本,非常的好用,功能也比较强大。
Windows下的安装就不赘述了,非常简单,下载安装包,下一步下一步就能完成。Windows和Linux的下载页面地址如下:
qBittorrent官方下载页面
https://www.qbittorrent.org/download.php
接下来简单的说一下,在Ubuntu 16.04系统下使用PPA安装最新稳定版qBittorrent的方法。
需要说明的是,接下来安装的不是Ubuntu桌面版的qBittorrent,而是供服务器使用的Webui版。
首先安装add-apt-repository命令,如果你的服务器已经安装过了请跳过。
apt-get install software-properties-common
然后添加PPA源,根据情况选择,如果用于PT,请使用稳定版。
# qBittorrent 稳定版
sudo add-apt-repository ppa:qbittorrent-team/qbittorrent-stable
# qBittorrent 测试版
sudo add-apt-repository ppa:qbittorrent-team/qbittorrent-unstable
最后就是安装qBittorrent了。
sudo apt-get update && sudo apt-get install qbittorrent-nox
安装完成之后就是启动了。
sudo qbittorrent-nox
但是这样不是在后台启动的,一旦退出SSH,程序也会退出,所以此时要使用screen命令建一个会话。
首先安装screen,如果已经安装则跳过。
apt-get install screen
创建一个screen会话
screen -S qb
然后在这个会话中运行qBittorrent。
qBittorrent首次启动后,Webui的登陆地址是IP:8080,默认的账户是admin密码是adminadmin,登录后建议立即进行修改。