Tag: uninstall rpm
Linux: Remove installed RPM packages manually
by Ali on Oct.17, 2009, under Linux, Misc
Sometimes you screw up an application and are unable to use rpm -e to remove them from your system. Here is how you go about doing that:
To find installed RPM packages:
rpm -qa | grep <string>
To remove:
rpm -e --nodeps --allmatches <package name>