Operating System - Linux
1832594 Members
2848 Online
110043 Solutions
New Discussion

please help me install OpenOffice on SLES 9 asap

 
Maaz
Valued Contributor

please help me install OpenOffice on SLES 9 asap

OS: SLES 9 SP 3 x86_64

SLES 9 doesnt ships with OpenOffice.

I have to install the OpenOffice_org-1.1.5-0.8.i586.rpm from the media of Novell Linux Desktop 9 x86_64-SP3(SUSE 9 Desktop), on SLES-9-x86_64-SP3

Novell Linux Desktop 9(NLD 9) is simply the Enterprise class Desktop version of SUSE 9 from Novell.

On SLES 9, Got the following error when tries to install OpenOffice from NLD 9 media

# rpm -ivh /media/cdrecorder/suse/i586/OpenOffice_org-1.1.5-0.8.i586.rpm
error: Failed dependencies:
OpenOffice_org-lang is needed by OpenOffice_org-1.1.5-0.8
libstartup-notification-1.so.0 is needed by OpenOffice_org-1.1.5-0.8

I searched Internet a lot for "OpenOffice_org-lang" but didnt find any rpm for suse 9.x.

Second and the most strange thing is that this system(SLES 9 SP 3) already has "libstartup-notification-1.so.0" in /usr/lib, but still OpenOffice is asking for "libstartup-notification-1.so.0" (see line # two of dependency error)

But as I have said libstartup-notification-1.so.0 is already present I did the following to confirm
# rpm -q --provides startup-notification
libstartup-notification-1.so.0()(64bit)
startup-notification = 0.5-319.1

So please help me install the OpenOffice Novell Edition on SLES 9 that comes with Novell Linux Desktop 9 SP 3 i.e OpenOffice_org-1.1.5-0.8
14 REPLIES 14
Ivan Ferreira
Honored Contributor

Re: please help me install OpenOffice on SLES 9 asap

Probably, your best option is to not use version shipped with the distribution Media.

Download the package distributed in www.openoffice.org:

http://download.openoffice.org/2.3.0/contribute.html?product=OpenOffice.org&os=linuxintelwjre〈=en-US&version=2.3.0
Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?
Wilfred Chau_1
Respected Contributor

Re: please help me install OpenOffice on SLES 9 asap

Do you have yum install?

if you do, you can install the dependencies by doing this:

yum install

If you want, you can skip the dep check by adding a flag to the rpm command.

rpm --nodeps ...

try this on a development box first.
Maaz
Valued Contributor

Re: please help me install OpenOffice on SLES 9 asap

Dear Ivan thanks for help
No we cant install the vanilla version of OpenOffice ;), for some reasons we are restricted to install the Novell Edition of OpenOffice from NLD 9 media.

So please help me install the OpenOfice frm NLD 9 media.
~sesh
Esteemed Contributor

Re: please help me install OpenOffice on SLES 9 asap

You may try adding the NLD 9 CD (installation media) to the installation sources & use the Yast Package Manager to install Openoffice, which should resolve the dependencies.

In addition, if you do feel that you have to get the dependencies manually, you can use www.rpmfind.net to find them.
Maaz
Valued Contributor

Re: please help me install OpenOffice on SLES 9 asap

thanks Dear Wilfred Chau

>Do you have yum install?
No

>If you want, you can skip the dep check by adding a flag...
Yes I once have installed the OpenOffice as:
# rpm -ivh --nodeps --force /media/cdrecorder/suse/i586/OpenOffice_org-1.1.5-0.8.i586.rpm

By executing above command OpenOffice merely installed but failed to work.

# which oowriter
/usr/bin/oowriter

but when
# /usr/bin/oowriter

Your installation of OpenOffice doesnt provide the Selected icons set "default" ---

Installation of OpenOffice.org 1.1.5 failed:
'LD_LIBRARY_PATH=/usr/lib/ooo-1.1: /usr/lib/ooo-1.1/program /usr/lib/ooo-1.1/program/setup -R:/tmp/ooo- wrapper.autoresponse.file.M12434 -v -nogui >

It means that --nodeps is not the sol here in my case.

Please help

Regards

Maaz
Maaz
Valued Contributor

Re: please help me install OpenOffice on SLES 9 asap

thanks adric for help

>You may... use the Yast Package Manager to install Openoffice
I tried, but Yast just merely installs the OpenOffice frm NLD 9 media, but that OpenOffice doesnt works.

I found that it is equivalent to install the OpenOffice from NLD 9 media using rpm with 'nodeps' and 'force' flags, or from YAST(after configuring/adding NLD 9 media in installation source), becuase after installing OO from YAST same error comes when executing oowriter
# /usr/bin/oowriter

Your installation of OpenOffice doesnt provide the Selected icons set "default" ---

Installation of OpenOffice.org 1.1.5 failed:
'LD_LIBRARY_PATH=/usr/lib/ooo-1.1: /usr/lib/ooo-1.1/program /usr/lib/ooo-1.1/program/setup -R:/tmp/ooo- wrapper.autoresponse.file.M12434 -v -nogui


> get the dependencies manually, you can use www.rpmfind.net to find them.
If you can please find out the dependencies/rpms that are required to install before OO 1.1.5 installation on SLES 9 SP 3, please let me know
Maaz
Valued Contributor

Re: please help me install OpenOffice on SLES 9 asap

# rpm -q --provides startup-notification
libstartup-notification-1.so.0()(64bit)
startup-notification = 0.5-319.1

then why the Second Line in the output of "error: Failed dependencies:"
# rpm -ivh /media/cdrecorder/suse/i586/OpenOffice_org-1.1.5-0.8.i586.rpm
error: Failed dependencies:
OpenOffice_org-lang is needed by OpenOffice_org-1.1.5-0.8
libstartup-notification-1.so.0 is needed by OpenOffice_org-1.1.5-0.8

Ivan Ferreira
Honored Contributor

Re: please help me install OpenOffice on SLES 9 asap

>>> If you can please find out the dependencies/rpms that are required to install before OO 1.1.5 installation on SLES 9 SP 3, please let me know

You can identify the dependencies by running:

rpm -qRp package.rpm

>>> Second and the most strange thing is that this system(SLES 9 SP 3) already has

Probably, because rpm does not verify if the file exists, it just verify if was installed by a package name, thay may be different. If the file exists, you can ignore the dependency check using --nodeps. But OpenOffice_org-lang is needed, so you should run:

rpm -ivh OpenOffice_org-1*rpm OpenOffice_org-lang*rpm
Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?
Wilfred Chau_1
Respected Contributor

Re: please help me install OpenOffice on SLES 9 asap

it shouldn't be that hard....

try this:
open yast -> Software(or Software Management)

in the search box, enter Openoffice
See if you could install it from there.

If not, try to search for the 2 packages the OO needs and see if you could install it.

If all of the above failed, you need to install the missing packages first.

The find the rpm you can do this:

rpm -q --whatprovides
e.g.
# rpm -q --whatprovides libstartup-notification-1.so.0
startup-notification-0.8-4.1
Maaz
Valued Contributor

Re: please help me install OpenOffice on SLES 9 asap

Dear Ivan and Wilfred Chau and other Gurus

Ok I reinstall the SLES 9 SP 3, now "libstartup-notification-1.so.0" dependency error gone.

# rpm -q --provides startup-notification
libstartup-notification-1.so.0()(64bit)
startup-notification = 0.5-319.1

# rpm -q --whatprovides libstartup-notification-1.so.0
startup-notification-0.5-319.1

Now the only 1 dependency error remains, i.e
"OpenOffice_org-lang" and all other requirements are available in SLES 9 SP 3.

# rpm -ivh /media/cdrecorder/suse/i586/OpenOffice_org-1.1.5-0.8.i586.rpm
error: Failed dependencies:
OpenOffice_org-lang is needed by OpenOffice_org-1.1.5-0.8


# rpm -qRp OpenOffice_org-1.1.5-0.8.i586.rpm
OpenOffice_org-lang
/bin/sh
rpmlib(PayloadFilesHavePrefix) <= 4.0-1
rpmlib(CompressedFileNames) <= 3.0.4-1
/bin/bash
/bin/sh
/usr/bin/perl
libICE.so.6
libORBit-2.so.0
libSM.so.6
libX11.so.6
libXaw.so.7
libXext.so.6
libXt.so.6
libart_lgpl_2.so.2
libbonobo-activation.so.4
libc.so.6
libc.so.6(GLIBC_2.0)
libc.so.6(GLIBC_2.1)
libc.so.6(GLIBC_2.1.2)
libc.so.6(GLIBC_2.1.3)
libc.so.6(GLIBC_2.2)
libc.so.6(GLIBC_2.2.4)
libc.so.6(GLIBC_2.3)
libc.so.6(GLIBC_2.3.2)
libcomphelp3gcc3.so
libcppu.so.3
libcppu.so.3(UDK_3_0_0)
libcppuhelpergcc3.so.3
libcppuhelpergcc3.so.3(UDK_3_0_0)
libcrypt.so.1
libcrypt.so.1(GLIBC_2.0)
libcrypto.so.0.9.7
libcurl.so
libdb_cxx-3.2.so
libdbtools2.so
libdl.so.2
libdl.so.2(GLIBC_2.0)
libdl.so.2(GLIBC_2.1)
libexpat.so.0
libfile645li.so
libfreetype.so.6
libfwe645li.so
libfwi645li.so
libgcc_s.so.1
libgcc_s.so.1(GCC_3.0)
libgcc_s.so.1(GLIBC_2.0)
libgdbm.so.3
libgdbm_compat.so.3
libglib-2.0.so.0
libgmodule-2.0.so.0
libgnomevfs-2.so.0
libgo645li.so
libgthread-2.0.so.0
libi18nregexpgcc3.so
libi18nutilgcc3.so
libicudata.so.22
libicui18n.so.22
libicule.so.22
libicuuc.so.22
libj645li_g.so
libjawt.so
libjvmaccessgcc3.so.3
libjvmaccessgcc3.so.3(UDK_3.1)
liblng645li.so
liblocaledata_en.so
liblocaledata_en.so(OOO_1.1)
liblocaledata_es.so
liblocaledata_es.so(OOO_1.1)
libm.so.6
libm.so.6(GLIBC_2.0)
libncurses.so.5
libnsl.so.1
libnsl.so.1(GLIBC_2.0)
libodbcbase2.so
libofa645li.so
libpanel.so.5
libpkgchk645li.so
libpsp645li.so
libpsp645li.so(LIBPSPRINT_1_0)
libpthread.so.0
libpthread.so.0(GLIBC_2.0)
libpthread.so.0(GLIBC_2.1)
libpthread.so.0(GLIBC_2.2)
libpthread.so.0(GLIBC_2.3.2)
libpython.so.2
libpyuno.so
librmcxt.so.3
librmcxt.so.3(UDK_3_0_0)
libsal.so.3
libsal.so.3(UDK_3.1)
libsal.so.3(UDK_3.2)
libsal.so.3(UDK_3_0_0)
libsalhelpergcc3.so.3
libsalhelpergcc3.so.3(UDK_3_0_0)
libsb645li.so
libset645li.so
libsfx645li.so
libso645li.so
libsot645li.so
libspa645li.so
libssl.so.0.9.7
libstartup-notification-1.so.0
libstdc++.so.5
libstdc++.so.5(CXXABI_1.2)
libstdc++.so.5(GLIBCPP_3.2)
libstlport_gcc.so
libstore.so.3
libstore.so.3(UDK_3_0_0)
libsvl645li.so
libsvt645li.so
libsvx645li.so
libtk645li.so
libtl645li.so
libucbhelper2gcc3.so
libulingu645li.so
libutil.so.1
libutil.so.1(GLIBC_2.0)
libutl645li.so
libvcl645li.so
libvos3gcc3.so
libxcr645li.so
libxo645li.so
libz.so.1
rpmlib(PayloadIsBzip2) <= 3.0.5-1

Other then the first requirement i.e "OpenOffice_org-lang" all other requirements are available in SLES 9 SP 3.

There is no such rpm "OpenOffice_org-lang" in NLD 9 media, neither this rpm is available on Internet for suse 9.x.

Dear Wilfred Chau

I also have configure the "installation source" and add the NLD 9 media, then tries to install the OO from YAST,... YAST shows that it has installed the OO but infect it doesnt install OO properly
After installing the OO from YAST,
# /usr/bin/oowriter

Your installation of OpenOffice doesnt provide the Selected icons set "default" ---

Installation of OpenOffice.org 1.1.5 failed:
'LD_LIBRARY_PATH=/usr/lib/ooo-1.1: /usr/lib/ooo-1.1/program /usr/lib/ooo-1.1/program/setup -R:/tmp/ooo- wrapper.autoresponse.file.M12434 -v -nogui

Infect YAST doesnt install the OO properly

Regards
Maaz

~sesh
Esteemed Contributor

Re: please help me install OpenOffice on SLES 9 asap

Hi! Sorry to ask...

Have you tried:

rpm -q --whatprovides OpenOffice_org-lang

By the way, there are language packs available for Fedora. These should work on Novell / SUSE Linux as well. I've never tried it though. :) I think you'll need language pack for English (en).

http://www.rpmfind.net/linux/rpm2html/search.php?query=OpenOffice_org-lang&submit=Search+...
Maaz
Valued Contributor

Re: please help me install OpenOffice on SLES 9 asap

Hi adric
>Hi! Sorry to ask..
sorry for what ? Man! you guys helps me.

# rpm -q --whatprovides OpenOffice_org-lang
no package provides OpenOffice_org-lang

there is no package OpenOffice_org-lang.
Maaz
Valued Contributor

Re: please help me install OpenOffice on SLES 9 asap

install the "myspell-british" and "myspell-american" rpms from media(NLD 9) and issue resolved. ;-) i.e OpenOffice-1.1.5 is installed on SLES 9 ;)

Thanks EveryOne for help/support

Regards
Maaz


Maaz
Valued Contributor

Re: please help me install OpenOffice on SLES 9 asap

I am sorry one more thing left
# rpm -q --whatprovides OpenOffice_org-lang
OpenOffice_org-en-1.1.3-0.15

i.e not just myspell-british and myspell-american, are required but also OpenOffice_org-en-1.1.3-0.15 found on the NLD 9 media.

Regards