Contents

Convert an RPM file to a DEB file

TL;DR

Convert an RPM to a DEB:

1
sudo alien -k --scripts my-rpm-file.rpm

Source

Credit goes to my source article found at this link

The Rest of the Story

So I needed to convert an RPM file to a DEB file. If you have ever used BlueJeans for conferences calls, the desktop App does work on Linux, but is only available as an RPM file. This is unfortunate for me as I use Linux Mint. A little bit of searching, and here’s how it’s done.

Prerequisite

You’ll need to have alien installed:

1
sudo apt install alien

Steps

Once alien is installed, you can convert an RPM file to a DEB file, and install it:

Step 1:

1
sudo alien -k --scripts my-rpm-file.rpm

This will create the file my-deb-file.deb, and to install the DEB file move to Step 2.

Step 2:

1
sudo dpkg -i my-deb-file.deb

That’s it - hope this is helpful.

End of Line.