Installing PCRE

  1. Download the pcre installation file.

›_ Console

# wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre8.44.tar.gz 
  1. Extract the file.

›_ Console

# tar -zxf pcre-8.44.tar.gz 
  1. Go to the directory where the file is extracted.

›_ Console

# cd pcre-8.44 
  1. Run the following command to compile and install.

›_ Console

# ./configure 

# make 

# make install