- Welcome to Geeksww.com
Installing Libxslt on Ubuntu Linux
Libxslt:
According to xmlsoft.org,"Libxslt is the XSLT C library developed for the GNOME project. XSLT itself is a an XML language to define transformation for XML. Libxslt is based on libxml2 the XML C library developed for the GNOME project. It also implements most of the EXSLT set of processor-portable extensions functions and some of Saxon's evaluate and expressions extensions."
Before starting, please check to see if there is a latest version available to download. Visit ftp://xmlsoft.org/libxslt/ to find out about the available versions. IMPORTANT: See "Configuring Ubuntu Linux After Installation" to install the development tools required to compile and install libxslt from source code. Install libxml2 before installing libxslt.
Steps to download, compile, and install are as follows. Note: Replace 1.1.21 with your version number:
-
Downloading Libxslt:
Run the command below,wget ftp://xmlsoft.org/libxslt/libxslt-1.1.21.tar.gz
-
Extracting files from the downloaded package:
tar -xvzf libxslt-1.1.21.tar.gz
Now, enter the directory where the package is extracted.cd libxslt-1.1.21
-
Configuring Libxslt Library:
./configure --prefix=/usr/local/libxslt --with-libxml-prefix=/usr/local/libxml2/
Replace "/usr/local/libxslt" above with the directory path where you want to copy the files and folders. Also, replace "/usr/local/libxml2/" with the directory path where you installed libxml2. Note: check for any error message. -
Compiling Libxslt:
make
Note: check for any error message.
-
Installing Libxslt:
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.
Did this tutorial help a little? How about buy me a cup of coffee?
Please feel free to use the comments form below if you have any questions or need more explanation on anything. I do not guarantee a response.
IMPORTANT: You must thoroughy test any instructions on a production-like test environment first before trying anything on production systems. And, make sure it is tested for security, privacy, and safety. See our terms here.
tags cloud
popular searches
free download for mysql database server 5.1.5, bison, gearman, source code, php, laptop, mysql, install cairo, java, linux, install mysql, mysql initialization, mysql mysql, tools, ubuntu
Similar Tutorials:
- Installing Libxml2 on Ubuntu Linux
- Installing Libmhash on Ubuntu Linux
- Installing neon (webdav) on Ubuntu Linux
- Installing MySQL Client tools, binaries, and library on Ubuntu Linux
- Installing zlib through source code on Ubuntu Linux
Tutorials in 'Operating Systems > Linux' (more):
- Bash script to compare remote directory's files using file size
- Script to transfer files to remote server with verification
- setfacl: command not found
- How to download, compile, and install CMake on Linux
- How to download, compile, and install GNU ncurses on Debian/Ubuntu Linux?


Comments (write a comment):
0 comments so far. Be the first one to leave a comment on this article.