Created
August 28, 2015 14:20
-
-
Save AmrAbdeen/a534145909c0d5957c93 to your computer and use it in GitHub Desktop.
How to change .rpm package into .deb and vice versa
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.rpm packages are those packages used by Red Hat linux and .deb are those installer files used by Debian Distros. Some time you must have to convert .rpm packages into .deb and vice versa. fot that you must install a program called Alien | |
Insatalling Alien in Debian Distros | |
just type the following command in linux | |
sudo apt-get install alien | |
Convert .rpm into .dev | |
first navigate to folder having .rpm file and then type in terminal | |
alien packagename.rpm | |
Convert .deb file into .rpm | |
first navigate to folder having .deb file and then type in terminal | |
alien -r packagename.deb | |
Not only this you can convert to other files such as slp package, LSB package, tgz package, etc. yo can see examples into below figures. | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment