Skip to main content

How to convert .rpm file into .deb file (linux)

how to install rpm packages on Ubuntu, Linux Mint, kali linix, Debian etc....
Install alien and all the dependencies it needs:
# apt-get install alien dpkg-dev debhelper build-essential
To convert a package from rpm to Debian format:
# alien packagen.rpm
Finally, install your package!
# dpkg -i package.deb




For more info, visit: http://namhuy.net/1207/how-to-install-rpm-packages-on-ubuntu-mint-or-debian.html
$ alien -h 
 
by rockstardevil