PDA

View Full Version : How do I uninstall rpm packages?


milena
20th April 2005, 12:44
I'm new to Linux, and I got a little problem. I'm running Fedora Core 3. Yesterday I installed a webmin rpm package by running

rpm -ivh webmin.rpm

Now I'd like to know how I can uninstall it? :confused:

Thanks!

Milena

tagammeer
20th April 2005, 12:58
Run

rpm -qa | grep -i webmin

You should then find the exact package name. Then run

rpm -e <package name>

to uninstall it.