| WDef  
 
 
 
 
 Group: Members
 Posts: 798
 Joined: Sep. 2005
 | 
|  | Posted: Mar. 24 2007,13:42 |  |  Mikshaw was working on a script to remove apps - see his thread in the Programming & Scripting section.
 
 Ideas re apps that were installed as debian packages eg xmms:
 
 
 | Code Sample |  | ~# dpkg -l xmms Desired=Unknown/Install/Remove/Purge/Hold
 | Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
 |/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
 ||/ Name           Version        Description
 +++-==============-==============-============================================
 ii  xmms           1.2.8-2        Versatile X audio player that
 
 ~# dpkg -L xmms
 # this lists all the file owned by xmms
 
 # If apt-get remove xmms or dpkg -r xmms won't work (haven't tried it) you could go through and carefully check and consider for possible removal each of the files listed by dpkg -L xmms
 | 
 
 This might get complicated where one package is the dependency of another etc.
 |