1826004 Members
3289 Online
109690 Solutions
New Discussion

Remove Software

 
SOLVED
Go to solution
Nobody's Hero
Valued Contributor

Remove Software

Hello All,

I want to remove Mondo software from my redhat8 system. Can someone explain to me how I might do that? Im not familiar with linux.
UNIX IS GOOD
5 REPLIES 5
Nobody's Hero
Valued Contributor

Re: Remove Software

I need to do a query to list the software package name and then do a remove.


Thanks
UNIX IS GOOD
Francisco J. Soler
Honored Contributor
Solution

Re: Remove Software

Hi,
have you installed Mondo with rpm or via tgz?

If you have installed Mondo with rpm, check first the package name with the following command:

rpm -qa |grep -i mondo

if you obtain a name like mondo-1.65-1 you can revome it with:

rpm -e mondo

perhaps you need to uninstall mindi too, if you encounter some dependencies uninstall first mindi.

rpm -e mindi

You must do it like root (superuser) of course.


HTH
Frank.

Linux?. Yes, of course.
Balaji N
Honored Contributor

Re: Remove Software

rpm -qa | grep mondo

rpm -ev

hth
-balaji
Its Always Important To Know, What People Think Of You. Then, Of Course, You Surprise Them By Giving More.
Steven E. Protter
Exalted Contributor

Re: Remove Software

If you installed from tar, you can simply remove teh executables and directory.

Might I ask why you want to remove it?

Is it not doing what you wanted it to do?

I'm considering a red hat 9 installation.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Caesar_3
Esteemed Contributor

Re: Remove Software

Hello!

rpm -ev
The package name get from "rpm -qa"
You need to uninstall "mindi" and "mondo" packages.

Caesar