Uninstall an RPM problem

I am trying to uninstall an RPM that I know is installed on RH9. So I do the following to verify the name: # rpm -qa | grep ^mplayer mplayer-skins-1. 3-2. fr Then I try to uninstall it with the folowing and it tells me that the package is not installed but it seems to me that it actually is.

Linux Software 434 This topic was started by ,


data/avatar/default/avatar38.webp

5 Posts
Location -
Joined 2003-12-05
I am trying to uninstall an RPM that I know is installed on RH9. So I do the following to verify the name:
 
[root@localhost Skin]# rpm -qa | grep ^mplayer
mplayer-skins-1.3-2.fr
 
Then I try to uninstall it with the folowing and it tells me that the package is not installed but it seems to me that it actually is.
 
[root@localhost Skin]# rpm -e --allmatches mplayer-skins*
error: package mplayer-skins* is not installed
 
Could someone help me out with this.

Participate on our website and join the conversation

You have already an account on our website? Use the link below to login.
Login
Create a new user account. Registration is free and takes only a few seconds.
Register
This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


data/avatar/default/avatar32.webp

989 Posts
Location -
Joined 2001-08-14
Try dropping the * at the end of the name (ie rpm -e mplayer-skins), RPM *should* be able to match it without any help.