LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   how to uninstall software? (https://www.linuxquestions.org/questions/linux-software-2/how-to-uninstall-software-20703/)

croger 05-11-2002 12:55 AM

how to uninstall software?
 
such as *.tar.gz.I know how to install it.
but how to uninstall?

jpweston 05-11-2002 12:59 AM

It really depends on how you installed it. If you used a package manager (i.e. rpm), there is probably an "uninstall" option (either as a command line flag or within the menu interface).

If you compiled from source and used "make install" to do the installation, then you can use "make uninstall" if there is code for that in the Makefile. Otherwise, you're on your own for figuring out from the Makefile what the install did - then reversing that if possible.

j.

vfs 05-11-2002 08:20 AM

if it doesn't work, use brute force:

rm -rf /usr/local/program/dir

for example. You'll need to find the stale links and remove them...

HTH,

vfs.


All times are GMT -5. The time now is 04:55 PM.