RPM command in suse
Following are the various rpm commands used for suse
* Install
To install package we use the following command
# rpm -ivh package-name
* Upgrade
To upgrade any package we use the following command
# rpm -Uvh package-name
* Installed packages in the system
To find out which all packages are installed on teh system use the command
# rpm -qa
To find out recently install packages
# rpm -qa –last
* Erase the package
To erase the package from the system
# rpm -ev package name

Leave a Reply