LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   RPM is ridiculous... (https://www.linuxquestions.org/questions/linux-software-2/rpm-is-ridiculous-239419/)

borrrden 10-06-2004 11:06 AM

RPM is ridiculous...
 
Ok I installed an RPM (rather updated it) and now I want to uninstall it.....

shouldn't this do it --> rpm -e whatever.rpm

Well it doesn't it retardedly tells me that the package that I JUST INSTALLED.....is not installed......what do I do?

hamstereater 10-06-2004 11:27 AM

There is a difference between the package name and the name of the rpm file.

Try rpm -e then the name of the package without .rpm on the end, that mostly works.

Musikolo 10-06-2004 11:30 AM

I think you should first of all make sure it's been installed. For this you should get something from this:
Code:

rpm -L | grep <whatever>
where whatever comes from 'whatever.rpm'. If that doesn't work try just
Code:

rpm -L | more
and check if whatever appears in the list.

If the whatever appears in the list whether by using the first or the second way, then try:
Code:

rpm -e whatever
Afterwards, you might re-check that the whatever doesn't appear in the list by using any of the previous ways.


Since I'm not very like the most appropriate person to help about this, I encourage anyone who knows more than me about this to write his/her solution.

Good luck!! :D

borrrden 10-06-2004 04:06 PM

oh awesome thanks.....I used apt-get to uninstall it actually since it was a program that was on there - but i'll keep the advice in mind


All times are GMT -5. The time now is 09:45 PM.