一直用的 deluge 但是最近的一个PT站不支持,所以就换这个了.
deluge 安装看这个文章
CentOS 7 利用安装源安装Deluge,PT,BT下载工具
Deluge是Linux下一款优秀的BT下载软件,虽然在资源占用,软件体积上不如一些纯命令行的同类软件(如rtorrent),但是胜在有非常好用的Web客户端供使用。 1.下载并安装Deluge wget http://li.nux.ro/downloa …
准备
非 OpenVZ 架构的存储型 VPS
本人服务器为 CentOS7
我采用的是编译安装!更适合生产环境
#安装 EPEL 源 yum -y install epel-release #安装依赖 yum -y groupinstall "Development Tools" yum -y install wget git gcc gcc-c++ qt-devel boost-devel openssl-devel qt5-qtbase-devel qt5-linguist #contos7 先升级 gcc sudo yum install centos-release-scl sudo yum install devtoolset-7-gcc* scl enable devtoolset-7 bash which gcc gcc --version
先编译安装 libtorrent
wget https://github.com/arvidn/libtorrent/releases/download/libtorrent_1_1_12/libtorrent-rasterbar-1.1.12.tar.gz tar -zxf libtorrent-rasterbar-1.1.12.tar.gz cd libtorrent-rasterbar-1.1.12 ./configure --prefix=/usr CXXFLAGS=-std=c++11 make make install ln -s /usr/lib/pkgconfig/libtorrent-rasterbar.pc /usr/lib64/pkgconfig/libtorrent-rasterbar.pc ln -s /usr/lib/libtorrent-rasterbar.so.9 /usr/lib64/libtorrent-rasterbar.so.9
接下来安装 qbittorrent:
cd git clone https://github.com/qbittorrent/qBittorrent.git cd qBittorrent ./configure --prefix=/usr --disable-gui CPPFLAGS=-I/usr/include/qt5 CXXFLAGS=-std=c++11 make make install
安装之后运行
qbittorrent-nox
然后问你是不是同意用户协议
输入Y
此时你的 qbittorrent 就部署好了
站点:你的 VPS 的 IP:8080
用户名:admin
密码:adminadmin
开机自启
vi /usr/lib/systemd/system/qbittorrent.service #内容 [Unit] Description=qbittorrent torrent server [Service] User=root ExecStart=/usr/bin/qbittorrent-nox Restart=on-abort [Install] WantedBy=multi-user.target #:wq 保存之后 systemctl daemon-reload
关于 qbittorrent 管理命令如下所示:
systemctl start qbittorrent systemctl enable qbittorrent systemctl status qbittorrent systemctl stop qbittorrent
至此 qbittorrent 安装就完成了!
Plex 安装
由于为了跟 Flex 对接,现在我们在/下创建一个专门的下载目录,输入以下命令:
mkdir /download
wget https://downloads.plex.tv/plex-media-server/1.12.1.4885-1046ba85f/plexmediaserver-1.12.1.4885-1046ba85f.x86_64.rpm yum -y install plexmediaserver-1.12.1.4885-1046ba85f.x86_64.rpm #启动服务 systemctl start plexmediaserver #确认状态 systemctl status plexmediaserver
确保状态是 active,确认无误后,加入开机启动:
systemctl enable plexmediaserver
打开浏览器,输入你的 VPS 的 IP:32400 就应该可以看到 Plex 界面了