Changes between Initial Version and Version 1 of Installing/Linux/Ubuntu


Ignore:
Timestamp:
04/24/2010 06:33:47 PM (14 years ago)
Author:
Cas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Installing/Linux/Ubuntu

    v1 v1  
     1= Ubuntu Install Guide **THIS WIKI PAGE IS CURRENTLY WORK IN PROGRESS** = 
     2 
     3[[PageOutline(2-3,,inline)]] 
     4 
     5== Install Deluge == 
     6 
     7Deluge is included in the official Ubuntu repositories but may be out of date. For latest version use the [wiki:Installing/Linux/Ubuntu#AddPPARepository PPA Repository] 
     8 
     9In Synaptic Package Manager, quick search 'deluge'  
     10 
     11To install from the terminal: 
     12{{{ 
     13 sudo apt-get install deluge 
     14}}} 
     15 
     16== Updating == 
     17 
     18In Synaptic Package Manager, click Reload, Mark All Upgrades then Apply 
     19 
     20From the terminal: 
     21{{{ 
     22  sudo apt-get update 
     23  sudo apt-get upgrade 
     24}}} 
     25 
     26== Removing == 
     27 
     28In Synaptic Package Manager, quick search 'deluge'  
     29 
     30{{{ 
     31  sudo apt-get remove deluge 
     32  sudo apt-get upgrade 
     33}}} 
     34 
     35== Add PPA Repository == 
     36The unofficial Deluge PPA is https://launchpad.net/~deluge-team/+archive/ppa and typically will be updated within a week of new releases. Use this PPA for the most current, updated version of Deluge. 
     37 
     38=== Ubuntu 9.10 (Karmic) and newer === 
     39 
     40{{{ 
     41sudo add-apt-repository ppa:deluge-team/ppa 
     42sudo apt-get update 
     43}}} 
     44 
     45 
     46=== Ubuntu 9.04 (Jaunty) and older === 
     47* Jaunty 9.04 may also be updated as per Karmic see this [http://ubuntuforums.org/showpost.php?p=8916963&postcount=4 post] 
     48 
     49Add the  PPA Repository to your sources list. (See the [https://help.launchpad.net/Packaging/PPA/InstallingSoftware#On%20older%20%28pre%209.10%29%20Ubuntu%20systems Lauchpad PPA Help]). 
     50 
     51{{{ 
     52sudo gedit /etc/apt/sources.list 
     53}}} 
     54 
     55Add these lines to the bottom of the sources list (replace jaunty if other version) 
     56{{{ 
     57deb http://ppa.launchpad.net/deluge-team/ppa/ubuntu jaunty main  
     58deb-src http://ppa.launchpad.net/deluge-team/ppa/ubuntu jaunty main  
     59}}} 
     60 
     61Add key of repository 
     62 
     63{{{ 
     64 sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 249AD24C 
     65}}} 
     66== FAQ ==  
     67=== How do i fix 'add-apt-repository: command not found'? === 
     68Install add-apt-repository: 
     69{{{ 
     70sudo apt-get install python-software-properties 
     71}}}