Rate This Document
Findability
Accuracy
Completeness
Readability

Installing Jasper

Procedure

  1. Use PuTTY to log in to the server as the root user.
  2. Create an installation directory.
    mkdir -p /path/to/jasper
  3. Go to the installation directory.
    cd /path/to/jasper
  4. Obtain the source package.
    wget https://www.ece.uvic.ca/~frodo/jasper/software/jasper-1.900.2.tar.gz
  5. Decompress the source package.
    tar -zxvf jasper-1.900.2.tar.gz
  6. Go to the directory generated after the decompression.
    cd jasper-1.900.2/
  7. Configure the compilation.
    ./configure --prefix=/path/to/jasper

  8. Perform the compilation and installation.
    make -j 8

    make install

  9. Set the environment variables.
    export PATH=/path/to/jasper/bin:$PATH
    export LD_LIBRARY_PATH=/path/to/jasper/lib:$LD_LIBRARY_PATH