how to install rpm on linux code example
Example 1: install rpm fedora
sudo rpm –i sample_file.rpm
1
To install or upgrade a package, use the -U command-line option:
rpm -U filename.rpm. For example, to install the mlocate RPM used as an example in this chapter, run the following command:
rpm -U mlocate-0.22.2-2.i686.rpm. ...
rpm -Uhv mlocate-0.22.2-2.i686.rpm. ...
rpm –e package_name. ...
rpm –qa. ...
rpm –qa | more.
Example 2: install rpm ubuntu
sudo add-apt-repository universe
sudo apt-get update
sudo apt-get install alien
sudo alien <name of package>.rpm
sudo dpkg -i <name of package>.deb
sudo alien -i <name of package>.rpm