| View previous topic :: View next topic |
| Author |
Message |
stephenblack General User

Joined: 24 Apr 2007 Posts: 5
|
Posted: Tue Apr 24, 2007 8:20 pm Post subject: Linux RPM Mayhem |
|
|
I am having trouble because when I try to install the Open Office RPM's I find that everyting relies on openoffice.org-core-01*.rpm being installed
so then I try to install this file but it won't install because openoffice.org-core-09*.rpm needs to be installed
so then I try to install openoffice.org-core-09*.rpm and it wont install becase it requieres openoffice.org-core-01*.rpm to be installed
And so I get stuck in an infinite loop trying to install one then the other
So is it actually possible to install the software? |
|
| Back to top |
|
 |
acknak Moderator


Joined: 13 Aug 2004 Posts: 4295 Location: ~ 40°N,75°W
|
Posted: Tue Apr 24, 2007 9:23 pm Post subject: |
|
|
You have to pass the names of all the rpm files together--rpm will analyze them as a set and find that all the dependencies are mutually resolved.
Here's the command I use:
| Quote: | | $ rpm -ivh openoffice*.rpm |
|
|
| Back to top |
|
 |
Mark B Super User


Joined: 16 Feb 2007 Posts: 852 Location: Lincolnshire, UK
|
|
| Back to top |
|
 |
RGB Super User


Joined: 25 Nov 2003 Posts: 1743 Location: In Lombardy, near a glass of red Tuscany wine
|
Posted: Thu Apr 26, 2007 1:43 am Post subject: |
|
|
-U (update) do the same that -i (install) when the package is not installed: having both, U and i in the same command is redundant. I always use:
rpm -Uvh *.rpm |
|
| Back to top |
|
 |
|