How To Install libeclipselink-java-doc on Debian 9
Introduction
In this tutorial we learn how to install libeclipselink-java-doc
on Debian 9.
What is libeclipselink-java-doc
libeclipselink-java-doc is:
Documentation for Eclipse Persistence Services Project, more commonly known as EclipseLink, that is a Java comprehensive persistence framework delivering a set of persistence services based around standards. This lets you rapidly build applications that combine the best aspects of object technology and the specific data source.
EclipseLink was started by a donation of the full source code and test suites of Oracle’s TopLink product.
EclipseLink’s services currently include object-relational with JPA, object-XML binding in MOXy (with support for JAXB), a Service Data Objects (SDO) implementation and support for another technologies like: Database Web Services (DWS), XML-Relational (XRM) and Non-Relational (EIS via JCA).
There are three methods to install libeclipselink-java-doc
on Debian 9. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libeclipselink-java-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 libeclipselink-java-doc
using apt-get
by running the following command:
sudo apt-get -y install libeclipselink-java-doc
Install libeclipselink-java-doc Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libeclipselink-java-doc
using apt
by running the following command:
sudo apt -y install libeclipselink-java-doc
Install libeclipselink-java-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 Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libeclipselink-java-doc
using aptitude
by running the following command:
sudo aptitude -y install libeclipselink-java-doc
How To Uninstall libeclipselink-java-doc on Debian 9
To uninstall only the libeclipselink-java-doc
package we can use the following command:
sudo apt-get remove libeclipselink-java-doc
Uninstall libeclipselink-java-doc And Its Dependencies
To uninstall libeclipselink-java-doc
and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove libeclipselink-java-doc
Remove libeclipselink-java-doc Configurations and Data
To remove libeclipselink-java-doc
configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge libeclipselink-java-doc
Remove libeclipselink-java-doc configuration, data, and all of its dependencies
We can use the following command to remove libeclipselink-java-doc
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libeclipselink-java-doc
Dependencies
libeclipselink-java-doc have the following dependencies:
References
Summary
In this tutorial we learn how to install libeclipselink-java-doc
package on Debian 9 using different package management tools: apt
, apt-get
and aptitude
.