How to install an RPM Package on ubuntu linux
This post was written by admin on July 23, 2009
Posted Under: General
Posted Under: General
We usually install programs in ubuntu by using Synaptic or running apt-get command in terminal.Unfortunately,we can’t install an RPM package by these ways.
To install an RPM package,first we need install a utility that change packages from one format to the other.
sudo apt-get install alien dpkg-dev debhelper build-essential
Run following command in terminal to change the format of the package.
sudo alien filename.rpm
A new package generated with .deb extension.Now install the .deb package:
sudo dpkg -i filename.deb
Done.
Related posts:
- How to know where the package been installed in Ubuntu
- Delete the package mis-configured or install failed in Ubuntu
- How to unpack and compress a rar package in Ubuntu
- Install AcetoneISO2 2.1.1 in Ubuntu Linux
- 10 Cool Linux Commands Voted from Commandlinefu
Tags: tips
