
From the project’s website:
Alien is a program that converts between the rpm, dpkg, stampede slp, and slackware tgz file formats. If you want to use a package from another distribution than the one you have installed on your system, you can use alien to convert it to your preferred package format and install it.
Despite the large version number, alien is still (and will probably always be) rather experimental software. It has been used by many people for many years, but there are still many bugs and limitations.
You can get alien through Synaptic Package Manager or via the command line:
$sudo apt-get install alien
After you have installed alien, you can now start converting your .rpm files.
To convert .rpm file to .deb using the command line, first you have to go to the directory where you saved your .rpm file. Assuming it’s on your desktop:
$cd ~/Desktop
Then, convert the .rpm file to .deb with this command:
$sudo alien –k rpm-file-name.rpm
After that, you can now install the .deb file in Ubuntu using a Debian package installer or with this command:
$sudo dpkg –i deb-file-name.deb
Use Alien and screw your system!
ReplyDeletealien command can install rpm package itself by using "-i" option.
ReplyDelete