How do I install zlib on Debian 6?

I want to install zlib on Debian 6. For this, I think I would use apt-get install, but I don't know which package to use. The package zlib doesn't exist, and if I install zlibc (which sounds most appropriate), running zlib -version brings up the error command not found. (I used apt-file search zlib to find zlibc.)

Is there another package which contains zlib, and how do I find this package?

2 Answers

A zlib command does not exist:

$ dpkg -L zlib1g /. /usr /usr/share /usr/share/doc /usr/share/doc/zlib1g /usr/share/doc/zlib1g/copyright /usr/share/doc/zlib1g/changelog.Debian.gz /usr/share/doc/zlib1g/changelog.gz /usr/lib /usr/lib/libz.so.1.2.3.3 /usr/lib/libz.so.1 

It is a library.

If you are searching for anything use apt-cache search.

And if you need a command to compress use either gzip or zip.

0
sudo apt install zlib1g 

Possibly

sudo apt install zlib1g-dev 

as well.

3

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like