官网 http://dev.deluge-torrent.org/
项目地址 https://github.com/deluge-torrent/deluge

GTK UI for the desktop
Web UI for the browser
Console UI for the command line

有三种版本,我们这里只安装Web UI

从软件源安装

  • Ubuntu

    apt-get install python-software-properties software-properties-common
    add-apt-repository ppa:deluge-team/ppa
    apt-get update
    apt-get install deluged deluge-web deluge-webui
  • Debian

    apt-get update
    apt-get install deluged deluge-web deluge-webui

其他系统请参考官网的教程

  1. http://dev.deluge-torrent.org/wiki/Download
  2. http://dev.deluge-torrent.org/wiki/Installing

从源码编译安装

Debian & Ubuntu 安装依赖

apt-get install python python-twisted python-openssl python-setuptools intltool python-xdg python-chardet geoip-database python-libtorrent python-notify python-pygame python-glade2 librsvg2-common xdg-utils python-mako

编译安装
ftp下载 GitHub下载

wget http://download.deluge-torrent.org/source/deluge-1.3.12.tar.gz
tar zxf deluge*.tar.gz
cd deluge*
python setup.py build
python setup.py install

启动

正常启动

deluge-web
Go to http://localhost:8112/ default-password = "deluge"

指定端口启动
deluge-web -f -p 54321

后台运行

# 安装screen
apt-get install screen
# 建立一个名为deluge的后台screen,方便后续切换,此名字可随意命名
screen -S "deluge"
# 在新的screen窗口里输入
deluge-web
# 此时终端会持续运行,要将其切换到后台,按下ctrl+a+d键,将当前screen切换到后台,后续通过执行
screen -r deluge
# 即可切回此窗口,这时再去停止服务很方便

参考

官方wiki
在Ubuntu 14.04上安装deluge实现在VPS上进行bt离线下载