How To Install esajpip on Ubuntu 18.04
Introduction
In this tutorial we learn how to install esajpip on Ubuntu 18.04.
What is esajpip
esajpip 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.
There are three methods to install esajpip 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 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 using apt-get by running the following command:
sudo apt-get -y install esajpip
Install esajpip Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install esajpip using apt by running the following command:
sudo apt -y install esajpip
Install esajpip 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 using aptitude by running the following command:
sudo aptitude -y install esajpip
How To Uninstall esajpip on Ubuntu 18.04
To uninstall only the esajpip package we can use the following command:
sudo apt-get remove esajpip
Uninstall esajpip And Its Dependencies
To uninstall esajpip and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:
sudo apt-get -y autoremove esajpip
Remove esajpip Configurations and Data
To remove esajpip configuration and data from Ubuntu 18.04 we can use the following command:
sudo apt-get -y purge esajpip
Remove esajpip configuration, data, and all of its dependencies
We can use the following command to remove esajpip configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge esajpip
References
Summary
In this tutorial we learn how to install esajpip package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.