Uninstall an RPM problem
This is a discussion about Uninstall an RPM problem in the Linux Software category; 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.
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.
[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 in our website and join the conversation
This subject has been archived. New comments and votes cannot be submitted.
Dec 6
Dec 6
0
1 minute
Responses to this topic
Try dropping the * at the end of the name (ie rpm -e mplayer-skins), RPM *should* be able to match it without any help.