How To Install libsejda-io-java on Ubuntu 18.04
Introduction
In this tutorial we learn how to install libsejda-io-java on Ubuntu 18.04.
What is libsejda-io-java
libsejda-io-java is:
Sejda-io is a simple Input/Output layer built on top of Java standard IO and NIO packages. It is mainly used in Sejda, a PDF library, to ease its further development.
There are three methods to install libsejda-io-java 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 libsejda-io-java Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install libsejda-io-java using apt-get by running the following command:
sudo apt-get -y install libsejda-io-java
Install libsejda-io-java Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install libsejda-io-java using apt by running the following command:
sudo apt -y install libsejda-io-java
Install libsejda-io-java 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 libsejda-io-java using aptitude by running the following command:
sudo aptitude -y install libsejda-io-java
How To Uninstall libsejda-io-java on Ubuntu 18.04
To uninstall only the libsejda-io-java package we can use the following command:
sudo apt-get remove libsejda-io-java
Uninstall libsejda-io-java And Its Dependencies
To uninstall libsejda-io-java and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:
sudo apt-get -y autoremove libsejda-io-java
Remove libsejda-io-java Configurations and Data
To remove libsejda-io-java configuration and data from Ubuntu 18.04 we can use the following command:
sudo apt-get -y purge libsejda-io-java
Remove libsejda-io-java configuration, data, and all of its dependencies
We can use the following command to remove libsejda-io-java configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libsejda-io-java
References
Summary
In this tutorial we learn how to install libsejda-io-java package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.