Installing rpm packages on ubuntu, mint, or debian
The suggested method to install software or deb packages on Ubuntu/Mint linux is via Synaptic, Ubuntu Software Center/ppa, or an apt-get command from the terminal.You might sometimes need to install rpm package to your ubuntu/mint linux/debian box, there is a utility called Alien, Alien converts an RPM package file into a Debian package file or Alien can install an RPM file directly.
Install Alien
Open your terminal CTRL+T and enter this line.
sudo apt-get install alienInstalling RPM package directly
sudo alien -i package_name.rpmConverting the RPM file to a Debian package
sudo alien package_name.rpmInstalling the converted Debian package
sudo dpkg -i package_name.debFor additional Help, use
alien -h