How to install a "rpm" file on linux (Fedora)
> rpm -ivh <package>.rpm
How to uninstall an installed rpm.
First you need to find out the package name.
> rpm -qa | grep <part_of_the_package_name>
It will give you the full package name. So you can uninstall it.
> rpm -e <package_name>
No comments:
Post a Comment