libz.so missing


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers libz.so missing
# 1  
Old 09-28-2010
libz.so missing

Hi,

This is a new problem that I have since few days back. I have a CVS working on HP Unix, which apparently needs libz.so. Suddenly this libz.so seems to be missing.

$ cvs
/usr/lib/hpux32/dld.so: Unable to find library 'libz.so'.
Killed

almost like the file disappeared from the location. Previously this was working without any issues.

What is this file and how can I restore it back?

Any help is highly appreciated

Thanks in advance
# 2  
Old 09-28-2010
what does
Code:
find /lib -name 'libz*' -exec ls -l {} \;

show?
# 3  
Old 09-28-2010
nothing is returned when this command is executed
# 4  
Old 09-28-2010
Then for some reason you really are missing that library. Did you just port the code from one machine to another.

The file may be somewhere else
Code:
find / -name 'libz*' -exec ls -l {} \;  2>/dev/null

If it shows up you can use SHLIB_PATH envrionment variable to point to it. I would suspect this means something clobbered your SHLIB_PATH variable, which broke your code. Show your output please.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Programming

Missing cout

Heyas Me trying some C.. cout in specific, thats what i remembered: #include <stdio.h> // -- Just the above or with all the below ones, no change #include <stdio_ext.h> #include <stdlib.h> #include <wchar.h> //#include <iostream> // I assume its the same anyway? //#include <iostream.h>... (2 Replies)
Discussion started by: sea
2 Replies

2. Red Hat

Yum - resolving missing dependencies that are not missing

I am trying to install VirtualBox on RHEL 5 but I need the 32 bit version for 32 bit Windows. When I run yum I get the following: sudo yum localinstall /auto/spvtg-it/spvss-migration/Software/VirtualBox-4.3-4.3.2_90405_el6-1.i686.rpm Loaded plugins: fastestmirror Setting up Local Package... (13 Replies)
Discussion started by: gw1500se
13 Replies

3. SuSE

How to resolve missing missing dependencies with opensuse 11.3 and 12.3?

Hello, This is a programming question as well as a suse question, so let me know if you think I should post this in programming. I have an application that I compiled under opensuse 12.2 using g77-3.3/g++3.3. The program compiles and runs just fine. I gave the application to a colleague who... (2 Replies)
Discussion started by: LMHmedchem
2 Replies

4. Shell Programming and Scripting

[: missing `]'

Hi, I am getting this error while running the following code. i=`awk '{print $2}' test1.txt` j=`awk '{print $4}' test1.txt` k=`awk '{print $6}' test1.txt` if ; then echo "Up." else echo "down" fi rm -f test.txt test1.txt error is this: line 12: ' Please suggest. (2 Replies)
Discussion started by: arijitsaha
2 Replies

5. Linux

library missing

Hi, I am trying migrate webmin application from solaris to linux. But that is not working in Linux. because the library librpcsoc.so has missed in Linux box.. Could you please advice me that how to resolve this issue and also that how to install that library as well. (1 Reply)
Discussion started by: Mani_apr08
1 Replies

6. UNIX for Dummies Questions & Answers

missing scrollbar

Hi, My tcsh window doesn't have a scrollbar, so I don't get a lot of history! Can you help to get scrollbar? Thanks (3 Replies)
Discussion started by: parisa_3456
3 Replies

7. Solaris

missing libsunmath.so.1

Hi, I have an application which requires libsunmath.so.1, however; my os version seems to be missing this file (find from root level did not return anything). Version: SunOS 5.10 where can I get this file? thanks, (1 Reply)
Discussion started by: orahi001
1 Replies

8. HP-UX

Can't find /lib/libz.so.1

Hi, I am new to unix. But, I write programs in progress that run on an HP-UX. We are running a program and it is looking for the file /lib/libz.so.1 Naturally, we do have ZLIB 1.2.3 installed, and I can only find files called libz.sl.1 libz.a libz.sl.1.2.3 None of these files are... (2 Replies)
Discussion started by: tariqjamal
2 Replies

9. Shell Programming and Scripting

what am I missing?

I have the following portion of a script Check() { echo "\n\nChecking that all constraints are Enabled" echo "..." sleep 2 CHECK_COUNT='sqlplus -s $1 <<-EOSQL4 set feed off pause off pages 0 head off; set linesize 150 echo off; select count(*) from user_constraints where... (4 Replies)
Discussion started by: Zelp
4 Replies
Login or Register to Ask a Question