How To Install libeclipselink-java-doc on Debian 9

In this tutorial we learn how to install libeclipselink-java-doc on Debian 9. libeclipselink-java-doc is Documentation for libeclipselink-java

Introduction

In this tutorial we learn how to install libeclipselink-java-doc on Debian 9.

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.

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

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

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

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

sudo apt-get remove libeclipselink-java-doc

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

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

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.