how can i find my package name to uninstall it in redhat linux? i don’t know exact name of my rpm package?
Monday, August 10th, 2009 at
10:25
i installed a jakarta-tomcat as an rpm file , and now i want to remove it from my system.
Tagged with: jakarta tomcat • rpm
Filed under: rpm
Like this post? Subscribe to my RSS feed and get loads more!
As a general solution, you can pipe the output of all known rpms to grep to look for the name. Like so:
rpm -qa | grep tomcat
Try using yum:
yum remove jakarta-tomcat
Use Yum