CentOS 7安装Deluge

Deluge 支持 Linux (Debian, Fedora, OpenSUSE, Arch, Gentoo )、Win、Mac、FreeBSD 多个平台,非常稳定,而且支持单一种子限速功能。部分 PT 站会对单一种子的速度有限制,如果超速,账号可能会被警告甚至封禁。如果挂的PT站有限速要求,推荐使用Deluge。比较遗憾的是,Deluge没有官方的CentOS源。如果需要在CentOS安装,可尝试下第三方的源。

Deluge 有 GUI for the desktop,Web UI for the browser 和 Console UI for the command line 三个 interfaces,这里安装的是 Web UI for the browser,可以通过浏览器管理 Deluge。

Delgue 在 NUX 源中,因而安装需要添加 NUX。部分依赖包需要 EPEL 源,如果没有安装 EPEL 源,也需要添加。

# 安装 EPEL 源
yum -y install epel-release
# 安装 NUX 源
yum -y install wget
wget http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm
rpm -ivh nux-dextop-release-0-5.el7.nux.noarch.rpm

添加源后,接着安装 Deluge:

yum -y install deluge-web

运行

systemctl start deluge-web

访问 http://ip 地址:8112 即可访问 Web 界面。如果开启了防火墙,需要开放 8112 端口:

firewall-cmd --permanent --zone=public --add-port=8112/tcp
firewall-cmd --reload

开机自启动

systemctl enable deluge-web

附带 http://ip 地址:8112,deluge的web页面:

Ubuntu安装deluge教程可以参考官方:https://dev.deluge-torrent.org/wiki/Installing/Linux/Ubuntu

标签:Centos 发布于:2019-10-17 00:38:14