How to convert RPM packages to DEB packages using Ubuntu?
|
|
|
|
|
Question: How to convert RPM packages to DEB packages? NOTE: Has been tested on Ubuntu 9.10 Answer: - In Ubuntu open Synaptic Package Manager 'System->Administration->Synaptic Package Manager'

- Now we need to install 2 apps called alien and fakeroot
- alien - Convert and install rpm and other packages
- fakeroot - Gives a fake root environment

- To install them simply type alien in the Quick search box and mark for installation and do the same for fakeroot.
- Once both have been marked for installation click on Apply

- Now these packages will be installed, after installation they will be ready to use.
- Open a new Terminal Session and execute the command below with your RPM package
fakeroot alien RPM_PACKAGE.rpm
This will create a DEB package in the same directory as your RPM package, for more info about alien use the man alien command
|