
Deluge 支持 Linux (Debian, Fedora, OpenSUSE, Arch, Gentoo )、Win、Mac、FreeBSD 多個(gè)平臺,非常穩(wěn)定,而且支持單一種子限速功能。部分 PT 站會對單一種子的速度有限制,如果超速,賬號可能會被警告甚至封禁。如果掛的PT站有限速要求,推薦使用Deluge。比較遺憾的是,Deluge沒有官方的CentOS源。如果需要在CentOS安裝,可嘗試下第三方的源。
Deluge 有 GUI for the desktop,Web UI for the browser 和 Console UI for the command line 三個(gè) 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
運(yùn)行
systemctl start deluge-web
訪問 http://ip 地址:8112 即可訪問 Web 界面。如果開啟了防火墻,需要開放 8112 端口:
firewall-cmd --permanent --zone=public --add-port=8112/tcp
firewall-cmd --reload
開機(jī)自啟動(dòng)
systemctl enable deluge-web
附帶 http://ip 地址:8112,deluge的web頁面:

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