After checking which distribution the libz.so.1 belongs to ( http://packages.ubuntu.com/lucid/i386/zlib1g/filelist ), you should try to install zlib1g:
sudo apt-get install zlib1g
As pointed out by @ E-rich, you may need to add the suffix: i386 to the package name for the package manager that correctly identifies it:
sudo apt-get install zlib1g:i386
EDIT (for CentOS or another distribution using yum ):
If someone uses CentOS (or any other distribution that uses yum ) that may end up reading this question, @syslogic suggested the following solution in the comments:
yum install zlib.i686
or, for 32-bit binaries:
yum install zlib.i386
pah May 04 '14 at 8:37 2014-05-04 08:37
source share