How To Install libformula-java-doc on Kali Linux
Introduction
In this tutorial we learn how to install libformula-java-doc on Kali Linux.
What is libformula-java-doc
libformula-java-doc is:
LibFormula provides Excel-Style-Expressions. The implementation provided here is very generic and can be used in any application that needs to compute formulas.
The syntax is based on the OpenFormula-specifications, but with carefully pruning away all the spreadsheet specific parts (like references to cell-ranges).
This package contains the Javadoc.
There are three methods to install libformula-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 libformula-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 libformula-java-doc using apt-get by running the following command:
sudo apt-get -y install libformula-java-docInstall libformula-java-doc Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libformula-java-doc using apt by running the following command:
sudo apt -y install libformula-java-docInstall libformula-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 libformula-java-doc using aptitude by running the following command:
sudo aptitude -y install libformula-java-docHow To Uninstall libformula-java-doc on Kali Linux
To uninstall only the libformula-java-doc package we can use the following command:
sudo apt-get remove libformula-java-docUninstall libformula-java-doc And Its Dependencies
To uninstall libformula-java-doc and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libformula-java-docRemove libformula-java-doc Configurations and Data
To remove libformula-java-doc configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libformula-java-docRemove libformula-java-doc configuration, data, and all of its dependencies
We can use the following command to remove libformula-java-doc configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libformula-java-docDependencies
libformula-java-doc have the following dependencies:
References
Summary
In this tutorial we learn how to install libformula-java-doc package on Kali Linux using different package management tools: apt, apt-get and aptitude.