Techs Worldwide has moved to a new location with a new name and more advanced features. Click here to visit Geeks Worldwide for technology news, tutorials, videos, tools, and discussions.
Today: 07/05/2009
 

Installing Libxml2 on Ubuntu Linux

This short tutorial shows you how to install libxml2 on Ubuntu Linux Server. The process is very simple. For this tutorial, I'll be installing libxml2 version 2.6.29. Note: Do not use versions older than 2.5.10. 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).

Libxml:

According to xmlsoft.org,

"Libxml2 is the XML C parser and toolkit developed for the Gnome project (but usable outside of the Gnome platform), it is free software available under the MIT License. XML itself is a metalanguage to design markup languages, i.e. text language where semantic and structure are added to the content using extra "markup" information enclosed between angle brackets. HTML is the most well-known markup language. Though the library is written in C a variety of language bindings make it available in other environments."

Before starting, please check to see if there is a latest version available to download. Visit ftp://xmlsoft.org/libxml2/ to find out about the available versions. IMPORTANT: See Configuring Ubuntu Linux After Installation to install the development tools required to compile and install libxml2 from source code.

Steps to download, compile, and install are as follows. Note: Replace 2.6.29 with your version number:

  • Downloading Libxml2:

    Run the command below,

    wget ftp://xmlsoft.org/libxml2/libxml2-sources-2.6.29.tar.gz

  • Extracting files from the downloaded package:

    tar -xvzf libxml2-sources-2.6.29.tar.gz

    Now, enter the directory where the package is extracted.

    cd libxml2-2.6.29

  • Configuring Libxml2 Library:

    ./configure --prefix=/usr/local/libxml2

    Replace "/usr/local/libxml2" above with the directory path where you want to copy the files and folders. Note: check for any error message.
  • Compiling Libxml2:

    make

    Note: check for any error message.

  • Installing Libxml2:

    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.

Thats it. Library has bee successfully installed.

=======================================================================================

Support Geeks 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/">
Geeks Worldwide - Tutorials about Software Installation,
Configuration, Administration, Monitoring, Tools, Tips &
Tricks
</a>

OR a simple one.

<a href="http://www.techsww.com/">
Geeks Worldwide - IT related Tutorials
</a>

Feedbacks:

We appreciate feedbacks and suggestions about our tutorials and Geeks 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.



 
Creative Commons License   Valid XHTML 1.0 Transitional Valid CSS