Thursday, March 28, 2019

How to convert rpm to deb?

Converting rpm(centOS/Redhat etc) to deb(ubuntu/debian etc) or deb to rpm

To convert rpm packages to deb you will need a program like Alien (https://wiki.debian.org/Alien)

Alien is a computer program that can convert different Linux package distributions to debian. It supports conversion between Linux Standard Base, RPM, deb, Stampede (.slp) and Slackware (tgz) packages.

To convert a .rpm into a .deb simple run:
alien --to-deb /path/to/file.rpm

And vice-versa:
alien --to-rpm /path/to/file.deb

***

No comments:

Post a Comment