Operating System - HP-UX
1825711 Members
3128 Online
109686 Solutions
New Discussion

wget not working after installation

 
SOLVED
Go to solution
Efim Kushnir
Frequent Advisor

wget not working after installation

Dear Sirs,

We are install file "wget-1.10.2-ia64-11.23.depot.gz" on system rx2620 HP-UX B.11.23 U ia64.
Installation was successful.

When we try use it programm we have warning about not find special library:

wget /usr/lib/hpux32/dld.so: Unable to find library 'libintl.so'.
Killed

May sombody help me resolve it problem ?

BR,
Efim Kushnir.
Look for the answers, do not stop !
4 REPLIES 4
JASH_2
Trusted Contributor
Solution

Re: wget not working after installation

Efim,

Do a find on libintl.so, see if you have one on your system. If you have one on your system, you just need to link it to where the wget program is looking for it.

find / -name libintl.so -print

#pwd
/usr/lib/hpux32
#ln -s /usr/local/lib/libintl.so libintl.so

If you don't have a copy, then you can download a copy and install it from:-

http://hpux.connect.org.uk/hppd/hpux

Hope this helps.

JASH
If I can, I will!
RAC_1
Honored Contributor

Re: wget not working after installation

did you check that you have file like that? swlist -l file "wget_product" will tell you that. You can also search in install directory.

Also, have you set SHLIB_PATH correctly?
There is no substitute to HARDWORK
Arunvijai_4
Honored Contributor

Re: wget not working after installation

Hi,

You need to install liniconv and other run time dependancies in order to run successfully. You can download and install all run time dependancies from here,

http://hpux.connect.org.uk/hppd/hpux/Gnu/libgcc-4.1.0/
http://hpux.connect.org.uk/hppd/hpux/Gnu/gettext-0.14.5/
http://hpux.connect.org.uk/hppd/hpux/Development/Libraries/libiconv-1.10/
http://hpux.connect.org.uk/hppd/hpux/Languages/openssl-0.9.8a/

-Arun
"A ship in the harbor is safe, but that is not what ships are built for"
Efim Kushnir
Frequent Advisor

Re: wget not working after installation

Thanks all Pharaons for good answer.
It's working normally.

BR,
Efim Kushnir.
Look for the answers, do not stop !