Operating System - Linux
1820483 Members
2379 Online
109624 Solutions
New Discussion юеВ

How do you uninstall a program in Linux Redhat?

 
SOLVED
Go to solution
Jorge Cocomess
Super Advisor

How do you uninstall a program in Linux Redhat?

If I used this command:
zcat < file_name.taz | tar xvfp -
To install a program. Now, I have two (2) options;
1. remove the previous promgram completely.
2. update the previous program with an updated file_name.taz

Any ideas on how I can do this without complications?

Thank you in advance.
J
3 REPLIES 3
Ivan Ferreira
Honored Contributor
Solution

Re: How do you uninstall a program in Linux Redhat?

Normally, programs installed from the source require the source three or makefile to remove the program. The update process depends of the product and always the source includes documentation about how to install and update the program. Check the README and INSTALL files included in the tar file.
Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?
Rick Garland
Honored Contributor

Re: How do you uninstall a program in Linux Redhat?

These answers depend on the application that was installed.

Most of what I have seen can be updated by installing the newer version. Do be in the same location and PATH as when you did the 1st install. Otherwise you might end up with 2 locations of the application - the old location and the new location. Let the new install upgrade the old install.

If the application required a compile and an a 'make install' you will have more to find. Could be libraries as well as binaries placed in different locations. This will be more difficult.

If you have RPM records of these installs, then you could do 'rpm -s' againest the apps.
Jorge Cocomess
Super Advisor

Re: How do you uninstall a program in Linux Redhat?

I just reinstalled and now it works.
Thanks,