mikshaw
Group: Members
Posts: 4856
Joined: July 2004 |
|
Posted: June 24 2005,14:54 |
|
Hope this helps with manually removing apps...
Most applications are installed into 3 directories ($PREFIX being /usr, /usr/local, or nothing): $PREFIX/bin, $PREFIX/share, /etc. Many programs also install libs into $PREFIX/lib, but unless you are sure another app does not depend on these libs it's best to leave them alone.
Executables are in the bin directories, usually named something similar to the package name. Delete files from these directories and the program will not run...what you will be left with is mostly configs and shared data files. You should be very careful removing stuff from /bin, since this is the directory containing all of the very basic tools needed to start up and run the system. /usr/bin and /usr/local/bin are a bit less vital, although care should still be taken.
Data files such as images, sounds, documentation, and examples are found in the share directories, in a subdirectory of a similar name as the package.
Configuration files are in /etc, usually in the root of /etc for a single file, or in a subdirectory for multiple files.
There are sometimes applications installed as self-contained packages, which makes it very easy to remove. A prime example in DSL is Firefox, which is installed into /usr/local/bin/firefox/. Remove this directory and the program is gone (except for the plugins directory in /opt)
-------------- http://www.tldp.org/LDP/intro-linux/html/index.html
|