How To Install esajpip-doc on Ubuntu 18.04

In this tutorial we learn how to install esajpip-doc on Ubuntu 18.04. esajpip-doc is ESA JPIP Server - doc

Introduction

In this tutorial we learn how to install esajpip-doc on Ubuntu 18.04.

What is esajpip-doc

esajpip-doc is:

The ESA JPIP server is capable to handle the following types of JPEG2000 image files: raw J2C, JP2 and JPX with or without hyperlinks. The codestreams of the images must comply with the following requirements:

  • No tiles partition is allowed.
  • The progression order must be LRCP, RLCP or RPCL.
  • PLT markers must be included with the information of all the packets.

This is the documentation for esajpip server

There are three methods to install esajpip-doc on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install esajpip-doc Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install esajpip-doc using apt-get by running the following command:

sudo apt-get -y install esajpip-doc

Install esajpip-doc Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install esajpip-doc using apt by running the following command:

sudo apt -y install esajpip-doc

Install esajpip-doc Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install esajpip-doc using aptitude by running the following command:

sudo aptitude -y install esajpip-doc

How To Uninstall esajpip-doc on Ubuntu 18.04

To uninstall only the esajpip-doc package we can use the following command:

sudo apt-get remove esajpip-doc

Uninstall esajpip-doc And Its Dependencies

To uninstall esajpip-doc and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove esajpip-doc

Remove esajpip-doc Configurations and Data

To remove esajpip-doc configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge esajpip-doc

Remove esajpip-doc configuration, data, and all of its dependencies

We can use the following command to remove esajpip-doc configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge esajpip-doc

References

Summary

In this tutorial we learn how to install esajpip-doc package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.