Changes between Version 29 and Version 30 of Installing/Source


Ignore:
Timestamp:
10/01/2012 04:31:57 PM (12 years ago)
Author:
Cas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Installing/Source

    v29 v30  
    9393 
    9494= Removing From System = 
    95 In the unlikely event you want to remove a copy of Deluge installed by the previous method, you will have to manually delete the Deluge related files on your system.  For the most part you can simply delete deluge related files in your site-packages folder. 
     95In the unlikely event you want to remove Deluge installed by the previous method, you will have to manually delete the Deluge related files on your system. The main files are normally installed in one of the following places: 
     96 
     97{{{ 
     98/usr/lib/python2.x/site-packages 
     99/usr/local/lib/python2.x/site-packages 
     100/usr/lib/python2.x/dist-packages 
     101/usr/local/lib/python2.x/dist-packages 
     102}}} 
    96103 
    97104Example: 
    98105{{{ 
    99 sudo rm -r /usr/lib/python2.5/site-packages/deluge* 
     106sudo rm -r /usr/lib/python2.7/dist-packages/deluge* 
    100107}}} 
    101108 
    102 There will still be some files located in /usr/share that you can hunt down and delete if you wish to. 
     109To find and remove the remaining files use the `locate` command and to ensure up-to date information also run `updatedb`: 
     110 
     111{{{ 
     112sudo updatedb 
     113locate deluge 
     114}}}