I'm using a special program that has only .rpm version available as installer. As I need to run it on Ubuntu, Is there a way to install it in Ubuntu?
Asked
Active
Viewed 1.5k times
1 Answers
7
Which program is it? You can always try and convert it using alien
in command line.
With alien you can convert from/to rpm/deb/tgz/slp.
The process is pretty straightforward:
sudo alien myfile.rpm
I think it will also attempt to install it.
If you don't have Alien installed, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command below.
sudo apt-get install alien

Mitch
- 107,631

Savvas Radevic
- 7,753
I got the .edb file but how to install? Could you let me know the command? thanks a lot!
– zhoucengchao Oct 18 '12 at 07:39sudo dpkg -i myfile.deb
– Savvas Radevic Oct 18 '12 at 10:34