0

I want to install the daily current build of LibreOffice in Ubuntu but they only make it available in .rpms.

I know I'm supposed to use Alien to convet .rpms to .debs but I can't find a command to batch convert all of them in the RPMS folder in my Ubuntu 12.04. (There's dozens)

I know there's a command to batch install .debs, but I'm looking for a similar one to convert .rpms.

Does anybody know a command that would allow me to do that?

justme
  • 9
  • 2

2 Answers2

2

To convert a .rpm file to .deb format,

open the Terminal from CTRL +ALT +T

sudo apt-get install alien
sudo apt-get update

After that, go to the directory where you have saved the .rpm file. To head over to the desired directory, type the command “cd directory name”. Once you are directed to the appropriate directory, enter the command:

Copy the following code to convert .rpm to .deb format.

sudo alien -k filename.rpm

Open the .deb file with ubuntu software centre.

To Convert a .deb file to .rpm

Type the following into the terminal.

sudo alien -r FILE_NAME.deb
NEW_FILE_NAME.noarch.rpm generated 
Saket
  • 893
2

I want to install the daily current build of LibreOffice in Ubuntu but they only make it available in .rpms.

That is not true. The daily dev buils contain DEBs. And they had them for a long time since this was answered and closed in 2012.

Rinzwind
  • 309,379