Quote:
|
Originally Posted by infra_red_dude
i installed yahoo messenger for RH9 (i'm using FC4 btw). was able to execute it, no probs. but while installing some software i messed wid it. now when i try to remove it, i get the error "error rh9.ymessenger.<version>.rpm is not installed"
|
for uninstalling an rpm package, you should provide the package name, not the file name.
$ rpm -e rh9.ymessenger.<version>.rpm -
incorrect
$ rpm -e rh9.ymessenger.<version> -
correct
to find the correct package name
$ rpm -qa | grep ymessenger
and use that one for removing it.