How To Convert RPM File Into DEB File In Linux Mint
Here’s how to convert a .rpm file into a .deb file in Linux Mint using ‘alien’ utility:
1. Issue the following command at the terminal –
sudo apt-get install alien
Enter ‘y’ to confirm the installation.
2. Now we’ll convert ‘opera-10.62-6438.i386.rpm’ into a .deb file. Issue the following command at the terminal –
sudo alien <file-name>
In...