[Solved] openoffice.org3 needed by openoffice.org3-en

Issues with installing under all GNU/Linux Distributions
Post Reply
Doug97
Posts: 2
Joined: Thu Oct 17, 2013 12:08 pm

[Solved] openoffice.org3 needed by openoffice.org3-en

Post by Doug97 »

I'm having trouble installing OpenOffice:

Code: Select all

itiwks-> rpm -Uvih *rpm 
error: Failed dependencies:
        openoffice.org3 is needed by (installed) openoffice.org3-en-US-3.3.0-9567.i586
        ooobasis3.3-core01 is needed by (installed) ooobasis3.3-en-US-3.3.0-9567.i586
Can anyone help please?
Last edited by Hagar Delest on Fri Oct 18, 2013 5:50 pm, edited 1 time in total.
Reason: tagged [Solved].
OpenOffice 4.0.1 on Fedora release 8 (Werewolf)
Linux itiwks.bch.ed.ac.uk 2.6.24.4-64.fc8 #1 SMP Sat Mar 29 09:54:46 EDT 2008 i686 i686 i386 GNU/Linux
Intel(R) Core(TM)2 Duo CPU E8400 @ 3.00GHz
User avatar
acknak
Moderator
Posts: 22756
Joined: Mon Oct 08, 2007 1:25 am
Location: USA:NJ:E3

Re: openoffice.org3 is needed by (installed) openoffice.org3

Post by acknak »

Greetings and welcome to the community forum!

It looks to me like you have some packages from the Fedora build of OO still installed. I would try removing those and then try again with the Apache packages.

It's not trivial to find all the installed OOo packages; I've used something like this:

rpm -qa | egrep -i '^(openoffice|ooo)'

I seem to remember that there were OOo package names that wouldn't match but I don't remember the details. You may have to investigate on your own.
AOO4/LO5 • Linux • Fedora 23
Doug97
Posts: 2
Joined: Thu Oct 17, 2013 12:08 pm

Re: openoffice.org3 is needed by (installed) openoffice.org3

Post by Doug97 »

OK, that command found a lot! The following ksh script allowed me to remove all instances found:

Code: Select all

for line in $(rpm -qa | egrep -i '^(openoffice|ooo)'); do
  rpm -e --allmatches --nodeps $line
done
Everything seems to be working now, I used the Redhat desktop integration rpm.

Thanks a lot!
OpenOffice 4.0.1 on Fedora release 8 (Werewolf)
Linux itiwks.bch.ed.ac.uk 2.6.24.4-64.fc8 #1 SMP Sat Mar 29 09:54:46 EDT 2008 i686 i686 i386 GNU/Linux
Intel(R) Core(TM)2 Duo CPU E8400 @ 3.00GHz
Post Reply