Installing RPM Files

Asked by Squirrel Havoc

How do I install RedHat Package Manager (rpm) packages? Or how can I convert them to .deb files?

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
Dave Meikle
Solved:
Last query:
Last reply:
Revision history for this message
Dave Meikle (dmk-uk) said :
#1

You need to use the alien command, so you will have to install it first.

sudo apt-get install alient

now you can use it like this:

alien -i <filename>.rpm

You can also change rpm's to debs for later install with dpkg. Just type man alien.

Regards,
Dave

Revision history for this message
Dave Meikle (dmk-uk) said :
#2

man alien for more information, not to convert the debs ;-)

Revision history for this message
Squirrel Havoc (squirrelhavoc) said :
#3

Thank you, that answered my question.