1830730 Members
1861 Online
110015 Solutions
New Discussion

Netscape 6

 
donne007
Regular Advisor

Netscape 6

I Have Installed Netscape , And when i try to run it Gives Me an Error
/opt/netscape6/run-mozilla.sh /opt/netscape6/mozilla-bin
MOZILLA_FIVE_HOME=/opt/netscape6
LD_LIBRARY_PATH=/opt/netscape6:/opt/netscape6/Cool
LIBPATH=/opt/netscape6:/opt/netscape6/Cool
SHLIB_PATH=/opt/netscape6:/opt/netscape6/Cool
XPCS_HOME=/opt/netscape6/Cool
MOZ_PROGRAM=/opt/netscape6/mozilla-bin
MOZ_TOOLKIT=
moz_debug=0
moz_debugger=
md5sum not found.
/usr/lib/dld.sl: Can't find path for shared library: libintl.sl.1
/usr/lib/dld.sl: No such file or directory
/opt/netscape6/run-mozilla.sh[36]: 22274 Abort(coredump)


I have the file /usr/lib/dld.s1 but of no use
the owner & group for the file is bin ,,
ANy help on this wil be greately appretiated ..
Thanks in ADvance

Asif
11 REPLIES 11
Sean OB_1
Honored Contributor

Re: Netscape 6

Do a find on libintl.sl and make sure that the directory it is in is in the libpath.
H.Merijn Brand (procura
Honored Contributor

Re: Netscape 6

Visit the HP porting center on e.g. http://hpux.cs.utah.edu/ and search for 'gettext'. Fetch the archive and extract the lib from there.

After that, you will need libiconv.sl (search for 'iconv') also in the GNU section. Then you will need libgdk.sl and libgtk.sl and libgmodule.sl and maybe libcharset.sl

It indeed *is* a hassle, but eventually might be worthwhile.

Then place all thos .sl files in /usr/local/lib

You might need a symlink from the mozilla bin folder to /usr/lib/libintl.sl

HTH
Enjoy, Have FUN! H.Merijn
Shannon Petry
Honored Contributor

Re: Netscape 6

Another way to approach and fix this is by installing the Ximian Gnome for HP-UX. It contains all the necessary libraries not only for Gnome/Gtk, but netscape 6 as well.
Should be able to find this at http://www/hp.com/go/software


Regards,
Shannon
Microsoft. When do you want a virus today?
donne007
Regular Advisor

Re: Netscape 6

Thank You all, Again After Upadting the Libraries , I have this error

./run-mozilla.sh ./mozilla-bin
MOZILLA_FIVE_HOME=.
LD_LIBRARY_PATH=.:./Cool
LIBPATH=.:./Cool
SHLIB_PATH=./Cool:.:/usr/lib:/usr/local/lib:/opt/gettext/lib:
XPCS_HOME=./Cool
MOZ_PROGRAM=./mozilla-bin
MOZ_TOOLKIT=
moz_debug=0
moz_debugger=
md5sum not found.
/usr/lib/dld.sl: Invalid version for shared library: /opt/libiconv/lib/libiconv.sl
/usr/lib/dld.sl: Exec format error
./run-mozilla.sh[36]: 29893 Abort(coredump)

What HAs to be done again.. Kindly Help ..
Cheers
Asif
H.Merijn Brand (procura
Honored Contributor

Re: Netscape 6

64bit vs. 32bit?
hp-ux 11i vs. 11.00 vs. 10.20?

Are you sure you got the correct GNU libs?

a5:/usr/local/lib 118 > file *sl
libcharset.sl: PA-RISC1.1 shared library -not stripped
libfreetype.sl: cannot open
libgdk.sl: PA-RISC2.0 shared library -not stripped
libglib.sl: PA-RISC2.0 shared library -not stripped
libgmodule.sl: PA-RISC2.0 shared library -not stripped
libgtk.sl: PA-RISC2.0 shared library -not stripped
libiconv.sl: PA-RISC1.1 shared library -not stripped
libintl.sl: PA-RISC1.1 shared library -not stripped
a5:/usr/local/lib 119 >

a5:/l1/wrk/mozilla 124 > file *.sl mozilla mozilla-bin
libcharset.sl: PA-RISC1.1 shared library -not stripped
libfreebl_hybrid_3.sl: PA-RISC2.0 shared library
libfreebl_pure32_3.sl: PA-RISC1.1 shared library
libgdk.sl: PA-RISC2.0 shared library -not stripped
libgkgfx.sl: PA-RISC1.1 shared library
libglib.sl: PA-RISC2.0 shared library -not stripped
libgmodule.sl: PA-RISC2.0 shared library -not stripped
libgtk.sl: PA-RISC2.0 shared library -not stripped
libgtkembedmoz.sl: PA-RISC1.1 shared library
libgtksuperwin.sl: PA-RISC1.1 shared library
libgtkxtbin.sl: PA-RISC1.1 shared library
libiconv.sl: PA-RISC1.1 shared library -not stripped
libintl.sl: PA-RISC1.1 shared library -not stripped
libjsj.sl: PA-RISC1.1 shared library
libldap50.sl: PA-RISC1.1 shared library
libmoz_art_lgpl.sl: PA-RISC1.1 shared library
libmozjs.sl: PA-RISC1.1 shared library
libmozz.sl: PA-RISC1.1 shared library
libmsgbaseutil.sl: PA-RISC1.1 shared library
libnspr4.sl: PA-RISC1.1 shared library
libnss3.sl: PA-RISC1.1 shared library
libnssckbi.sl: PA-RISC1.1 shared library
libnullplugin.sl: PA-RISC1.1 shared library
libplc4.sl: PA-RISC1.1 shared library
libplds4.sl: PA-RISC1.1 shared library
libprldap50.sl: PA-RISC1.1 shared library
libsmime3.sl: PA-RISC1.1 shared library
libsoftokn3.sl: PA-RISC1.1 shared library
libssl3.sl: PA-RISC1.1 shared library
libxlibrgb.sl: PA-RISC1.1 shared library
libxpcom.sl: PA-RISC1.1 shared library
libxpistub.sl: PA-RISC1.1 shared library
mozilla: commands text
mozilla-bin: PA-RISC1.1 shared executable dynamically linked
a5:/l1/wrk/mozilla 125 >

a5:/l1/wrk/mozilla 125 > model
9000/800/A500-5X
a5:/l1/wrk/mozilla 126 > grep A500-5X /usr/sam/lib/mo/sched.models
A500-5X 2.0 PA8600
a5:/l1/wrk/mozilla 127 >


If the last command shows 1.0 or 1.1 you cannot use 2.0 libraries

HTH
(think about your points)
Enjoy, Have FUN! H.Merijn
donne007
Regular Advisor

Re: Netscape 6

PRocura,
My Os is HpUX 11.0 and again how do i find wheher the libraries are ther or not , I tried copying the libraries but of no use is ther any patch wher i can get a consolidated lib updates ..
Nood more help

Thanks
Asif
H.Merijn Brand (procura
Honored Contributor

Re: Netscape 6

Give us the output of the following commands

# model
# getconf KERNEL_BITS
# file /usr/local/lib/*.sl
# file /opt/netscape6/*.sl
# file /opt/netscape6/mozilla-run
# file /opt/netscape6/Cool/*.sl
Enjoy, Have FUN! H.Merijn
donne007
Regular Advisor

Re: Netscape 6

Hi Procura

Here's the Output

64

9000/785/B2000

/usr/local/lib/libcharset.sl: PA-RISC1.1 shared library -not stripped
/usr/local/lib/libiconv.sl: PA-RISC1.1 shared library -not stripped
/opt/netscape6/libXpcs.sl: PA-RISC1.1 shared library
/opt/netscape6/libXprt.sl: PA-RISC1.1 shared library
/opt/netscape6/libXptl.sl: PA-RISC1.1 shared library
/opt/netscape6/libfreebl_hybrid_3.sl: PA-RISC2.0 shared library
/opt/netscape6/libfreebl_pure32_3.sl: PA-RISC1.1 shared library
/opt/netscape6/libgkgfx.sl: PA-RISC1.1 shared library
/opt/netscape6/libgtkembedmoz.sl: PA-RISC1.1 shared library
/opt/netscape6/libgtksuperwin.sl: PA-RISC1.1 shared library
/opt/netscape6/libgtkxtbin.sl: PA-RISC1.1 shared library
/opt/netscape6/libjsj.sl: PA-RISC1.1 shared library
/opt/netscape6/liblber40.sl: PA-RISC1.1 shared library
/opt/netscape6/libldap40.sl: PA-RISC1.1 shared library
/opt/netscape6/libmozjs.sl: PA-RISC1.1 shared library
/opt/netscape6/libmozz.sl: PA-RISC1.1 shared library
/opt/netscape6/libmsgbaseutil.sl: PA-RISC1.1 shared library
/opt/netscape6/libnspr4.sl: PA-RISC1.1 shared library
/opt/netscape6/libnssckbi.sl: PA-RISC1.1 shared library
/opt/netscape6/libnullplugin.sl: PA-RISC1.1 shared library
/opt/netscape6/libplc4.sl: PA-RISC1.1 shared library
/opt/netscape6/libplds4.sl: PA-RISC1.1 shared library
/opt/netscape6/libxlibrgb.sl: PA-RISC1.1 shared library
/opt/netscape6/libxpcom.sl: PA-RISC1.1 shared library
/opt/netscape6/libxpistub.sl: PA-RISC1.1 shared library
/opt/netscape6/mozilla-run: cannot open
/opt/netscape6/Cool/*.sl: cannot open

Thanks in Advance
Asif
Alex Glennie
Honored Contributor

Re: Netscape 6

I am using netscape 6 and have GTK etc installed due to Gnome. I can run either gnome or CDE and netscape works fine !

fyi :my system has 2 copies of the lib : /opt/gnome/lib/libiconv.sl
/opt/libiconv/lib/libiconv.sl

I would suggest you get the GTK installed from http://www.hp.com/workstations/support/software/hpux/gnome/downloads.html

Also see http://www.hp.com/workstations/products/unix/software/netscape/index.html

-> Netscape 6.2.1 utilizes the GTK 1.2.10 (HP product #: B6848AB) open-source windowing toolkit. Netscape 6.2.3 uses the GTK 1.2.10.1 (HP product #: B6848BA).

If you currently use older version of Netscape 6, we encourage you to upgrade to 6.2.x to avoid this security vulnerability.
download
Netscape Communicator 4.7x for hp-ux 10.20, 11.0, and 11i v 1.0
Netscape 6 for hp-ux 11.0, 11i v 1.0, and 11i v 1.6
GTK for Netscape 6.2.1 on hp-ux 11.0 and hp-ux 11i v 1.0
GTK for Netscape 6.2.3 on hp-ux 11i v 1.6
Japanese Language Pack for Netscape Communicator 4.79 on hp-ux 11.0 and 11i v
H.Merijn Brand (procura
Honored Contributor

Re: Netscape 6

Alex, thanks for the additional info.

FWIW I use Mozilla 1.1 (the binary port available from http://www.mozilla.org/releases which is much smaller than Netscape and works great)
Enjoy, Have FUN! H.Merijn
Sean OB_1
Honored Contributor

Re: Netscape 6

Asif,

Just a reminder to give points out to those who answered your questions. It only takes a moment, and helps make the forums more useful to everyone.

Sean