Changes between Version 7 and Version 8 of Installing/Linux/Debian/Squeeze


Ignore:
Timestamp:
11/05/2012 12:49:07 AM (11 years ago)
Author:
Cas
Comment:

change lucid to maverick

Legend:

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

    v7 v8  
    11= Debian Squeeze = 
    2 If you require a newer version of deluge than what is available in the squeeze repos, 
    3 you can install the newest version in the unstable distribution (sid) 
    42 
    5 First add sid to your /etc/apt/sources.list 
     3If you require the latest version of Deluge than what is currently in the Squeeze repository, there are two options open to you: 
     4 
     5== Unstable Repository  == 
     6 
     7This method installs the latest Deluge version by using the Debian unstable distribution repository. 
     8 
     9First add unstable to your `/etc/apt/sources.list`: 
    610{{{ 
    711deb http://ftp.us.debian.org/debian unstable main 
    812deb-src http://ftp.us.debian.org/debian unstable main 
    913}}} 
    10 (use your local country mirror, eg ftp.uk.debian.org, ftp.fr.debian.org etc.) 
     14''Note: You should use your local country mirror, eg `ftp.uk.debian.org`, `ftp.fr.debian.org` etc.'' 
    1115 
    12 Next we set the priority for each distribution, so that only packages you specify are from sid, not your whole system. 
     16Next set the priority for each distribution so that only packages you specify are from unstable, not your whole system. 
    1317 
    14 In /etc/apt/preferences 
     18Edit `/etc/apt/preferences` 
    1519{{{ 
    1620Package: * 
     
    2731}}} 
    2832 
    29 Update your packages list  
     33Update your packages list: 
    3034{{{ 
    3135aptitude update 
    3236}}} 
    3337 
    34 Now install the version of deluge available in unstable  
    35  
     38Now install the version of Deluge available in unstable: 
    3639{{{ 
    3740aptitude -t unstable install deluge 
     
    3942 
    4043 
    41 == Launchpad PPA == 
    42 An alternative to installing deluge from Sid, involves using a Launchpad PPA for Ubuntu Lucid.  
     44== Deluge Launchpad PPA == 
     45The alternative to using Debian unstable involves using the Deluge Launchpad PPA for Ubuntu Maverick as the release is old enough to not get any unmet dependencies when installed on Squeeze. 
    4346 
    44 That release is old enough as to not get any nasty unmet dependencies when those packages are installed on Squeeze. 
     47''This method does not work for Lenny as it depends on a package that doesn't exist, see [wiki:Installing/Linux/Debian/Lenny Installing Lenny]'' 
    4548 
    46 This method does '''not''' work for Lenny, it depends on a package that doesn't exist in Lenny yet, see [wiki:Installing/Linux/Debian/Lenny] as how this can be done. 
    47  
    48 First, lets add the PPA to your {{{/etc/apt/sources.list}}}: 
     49Add PPA to your `/etc/apt/sources.list`: 
    4950{{{ 
    50 deb http://ppa.launchpad.net/deluge-team/ppa/ubuntu lucid main  
    51 deb-src http://ppa.launchpad.net/deluge-team/ppa/ubuntu lucid main 
     51deb http://ppa.launchpad.net/deluge-team/ppa/ubuntu maverick main  
     52deb-src http://ppa.launchpad.net/deluge-team/ppa/ubuntu maverick main 
    5253}}} 
    5354 
    54 ''Note: Maverick repository (instead of Lucid) has been reported to work, enabling the use of libtorrent 0.15.'' 
    55  
    56 Then, lets fetch and add the GPG key for that repository in order to be able to verify the downloaded packages (the following command needs to be done as privileged user so either su or sudo). 
     55Add repository GPG key to verify the downloaded packages: 
    5756{{{ 
    5857apt-key adv --recv-keys --keyserver pgp.surfnet.nl 249AD24C 
     
    6463}}} 
    6564 
    66 Now all that is left to do is install deluge, for example:  
     65Install Deluge: 
    6766{{{ 
    68 apt-get install -t lucid deluge-common deluged deluge-web 
     67apt-get install -t maverick deluge-common deluged deluge-web 
    6968}}} 
     69 
     70To also upgrade libtorrent to 0.15: 
     71{{{ 
     72apt-get install -t maverick libtorrent-rasterbar6 python-libtorrent 
     73}}}