Click to See Complete Forum and Search --> : Uninstalling Software


TechGuy
01-05-2001, 10:04 PM
I installed a software RPM and then tried to delete all occurances of it (directories etc..) but when I try to reinstall it the RPM manager keeps telling me it's already installed. What do I need to do to be able to re-install it? What is the proper way in Linux to uninstall software?

TIA

speck
01-05-2001, 11:51 PM
The way to uninstall software using rpm is:

rpm -e programname

If you just delete the executable(s) and directories then the rpm database will still contain the reference to the program. Try the "rpm -e" command as root (if you have access) and see if that works.

Speck

TechGuy
01-05-2001, 11:53 PM
It worked perfect. Thanks!