nstalling rpms in ubuntu

Status
Not open for further replies.

mehulved

18 Till I Die............
Not at all a good idea. Why would you want to do that? Almost everything that is available in rpm format can be available in deb format.
Still if you want to go ahead with installing a rpm.
Firstly, convert rpm to deb using
Code:
sudo alien <name of the rpm>
then install the deb using
Code:
sudo dpkg -i <file name of the generated deb >
 

Sykora

I see right through you.
To install rpms on ubuntu (a debian based system), you can use the alien package converter. At the command line, first get alien using apt-get, and then use alien on the rpm.

Code:
$ sudo apt-get install alien
$ sudo alien -k name-of-rpm-file.rpm

Then install it as you would any .deb package.

Note however, that this method is experimental, buggy, and should not be done on system libraries, modules, etc.

EDIT: Oops, too late, answered when I wasn't looking.
 
Status
Not open for further replies.
Top Bottom