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 deluge deluge-web deluge-webui
Debian
apt-get update
apt-get install deluged deluge-web deluge-webui
其他系统请参考官网的教程
从源码编译安装
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
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
# 即可切回此窗口,这时再去停止服务很方便
参考