17
Oct/09
0

Linux: Remove installed RPM packages manually

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>