Changes between Version 2 and Version 3 of Installing/Linux/Debian/Jessie


Ignore:
Timestamp:
03/12/2017 12:10:56 PM (7 years ago)
Author:
Cas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Installing/Linux/Debian/Jessie

    v2 v3  
    11= Debian Jessie = 
    22 
    3 This describes the install of deluged for a headless server with webui running Debian Jessie using the default package version of deluge (this means you won't get an up to date version, but it'll be updated automatically with your system) 
     3Install using the default package version of Deluge (this means you won't get an up to date version, but it'll be updated automatically with your system) 
    44 
    5 == Install == 
     5== Install Deluge (GUI) == 
     6{{{ 
     7apt-get install deluge 
     8}}} 
    69 
    7 To get the binaries, simply do: 
     10== Install (headless/server) == 
     11 
    812{{{ 
    9 apt-get update 
    1013apt-get install deluged deluge-web 
    1114}}} 
    1215 
     16 
     17== Deluge Launchpad PPA == 
     18 
     19Install using the Deluge Ubuntu Launchpad PPA which contains the latest releases of Deluge and libtorrent. 
     20 
     21{{{ 
     22add-apt-repository 'deb http://ppa.launchpad.net/deluge-team/ppa/ubuntu trusty main' 
     23apt-get update 
     24apt-get install -t trusty deluged deluge-web 
     25}}} 
     26 
     27To upgrade libtorrent: 
     28{{{ 
     29apt-get install -t trusty libtorrent-rasterbar8 python-libtorrent 
     30}}} 
     31 
    1332For config and systemd service setup see [wiki:UserGuide/InitScript/systemd] and [wiki:UserGuide/ThinClient]. 
     33