Convert an RPM file to a DEB file
Contents
TL;DR
Convert an RPM to a DEB:
|
|
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:
|
|
Steps
Once alien
is installed, you can convert an RPM file to a DEB file, and install it:
Step 1:
|
|
This will create the file my-deb-file.deb
, and to install the DEB file move to Step 2.
Step 2:
|
|
That’s it - hope this is helpful.
End of Line.