How To Install libjexcelapi-java-doc on Kali Linux
Introduction
In this tutorial we learn how to install libjexcelapi-java-doc on Kali Linux.
What is libjexcelapi-java-doc
libjexcelapi-java-doc is:
The Java Excel API is an open source Java API which allows Java developers to read Excel spreadsheets and to generate Excel spreadsheets dynamically. In addition, it contains a mechanism which allows java applications to read in a spreadsheet, modify some cells and write out the new spreadsheet.
This API allows non Windows operating systems to run pure Java applications which can both process and deliver Excel spreadsheets. Because it is Java, this API may be invoked from within a servlet, thus giving access to Excel functionality over internet and intranet web applications.
This package contains API documentation (Javadoc) for Java Excel API.
There are three methods to install libjexcelapi-java-doc on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install libjexcelapi-java-doc Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libjexcelapi-java-doc using apt-get by running the following command:
sudo apt-get -y install libjexcelapi-java-docInstall libjexcelapi-java-doc Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libjexcelapi-java-doc using apt by running the following command:
sudo apt -y install libjexcelapi-java-docInstall libjexcelapi-java-doc Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install libjexcelapi-java-doc using aptitude by running the following command:
sudo aptitude -y install libjexcelapi-java-docHow To Uninstall libjexcelapi-java-doc on Kali Linux
To uninstall only the libjexcelapi-java-doc package we can use the following command:
sudo apt-get remove libjexcelapi-java-docUninstall libjexcelapi-java-doc And Its Dependencies
To uninstall libjexcelapi-java-doc and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libjexcelapi-java-docRemove libjexcelapi-java-doc Configurations and Data
To remove libjexcelapi-java-doc configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libjexcelapi-java-docRemove libjexcelapi-java-doc configuration, data, and all of its dependencies
We can use the following command to remove libjexcelapi-java-doc configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libjexcelapi-java-docDependencies
libjexcelapi-java-doc have the following dependencies:
References
Summary
In this tutorial we learn how to install libjexcelapi-java-doc package on Kali Linux using different package management tools: apt, apt-get and aptitude.