|
|
This short tutorial shows you how to install zlib on Ubuntu Linux Server. The process is very simple. For this tutorial, I'll be installing zlib version 1.2.3. Linux kernel is 2.6.15-26-powerpc. I have used a Mac Mini (powerpc/ppc architecture). GCC version number is 4.0.3. Your configuration may be different from mine but the installation steps below should work fine for most configurations with little or no change at all (including other Linux distributions and even unixes e.g. MacOS X).
zlib:
According to zlib.net,
"zlib is designed to be a free, general-purpose, legally unencumbered -- that is, not covered by any patents -- lossless data-compression library for use on virtually any computer hardware and operating system. The zlib data format is itself portable across platforms. Unlike the LZW compression method used in Unix compress(1) and in the GIF image format, the compression method currently used in zlib essentially never expands the data. (LZW can double or triple the file size in extreme cases.) zlib's memory footprint is also independent of the input data and can be reduced, if necessary, at some cost in compression."
Before starting, please check to see if there is a latest version available to download. Visit http://zlib.net/ to find out about the available versions. IMPORTANT: See "Configuring Ubuntu Linux After Installation" to install the development tools required to compile and install zlib from source code.
Steps to download, compile, and install are as follows. Note: Replace 1.2.3 with your version number:
|
-
Downloading zlib:
Run the command below,
wget http://www.zlib.net/zlib-1.2.3.tar.gz
-
Extracting files from the downloaded package:
tar -xvzf zlib-1.2.3.tar.gz
Now, enter the directory where the package is extracted.
cd zlib-1.2.3
-
Configuring zlib Library:
./configure --prefix=/usr/local/zlib
Replace "/usr/local/zlib" above with the directory path where you want to copy the files and folders. Note: check for any error message.
Compiling zlib:
make
Note: check for any error message.
-
Installing zlib:
As root (for privileges on destination directory), run the following.
With sudo,
sudo make install
Without sudo,
make install
Note: check for any error messages.
That’s it. Library has bee successfully installed.
=======================================================================================
Support Techs Worldwide:Link to us:
You can support us by putting a link to our website on your blog or website (code is below).
<a href="http://www.techsww.com">
Techs Worldwide - Tutorials about Software Installation,
Configuration, Administration, Monitoring, Tools, Tips &
Tricks
</a>
OR a simple one.
<a href="http://www.techsww.com">
Techs Worldwide - IT related Tutorials
</a>
Feedbacks: We appreciate feedbacks and suggestions about our tutorials and Techs Worldwide from readers. Please contact us using the form here and let us know what you think about the tutorial and the website in general.
Bookmark Us:
We are working on new features for the website, please keep visiting or bookmark us using your favourite bookmarking service.
Subscribe to RSS:
You can subscribe to our RSS feed here. |
|