Installing ZLIB

  1. Download the zlib installation file.

›_ Console

# wget http://zlib.net/zlib-1.2.11.tar.gz 
  1. Extract the file.

›_ Console

# tar -zxf zlib-1.2.11.tar.gz 
  1. Go to the directory where the file is extracted.

›_ Console

# cd zlib-1.2.11 
  1. Run the following command to compile and install.

›_ Console

# ./configure 

# make 

# make install