官網 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 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
# 即可切回此窗口,這時再去停止服務很方便