How To Install openjade on Kali Linux
Introduction
In this tutorial we learn how to install openjade on Kali Linux.
What is openjade
openjade is:
OpenJade is an implementation of the ISO/IEC 10179:1996 standard DSSSL language. It is based on James Clark’s Jade software.
The OpenJade processor, in conjunction with a DSSSL style sheet, is capable of translating SGML documents into other formats. Output formats currently supported are RTF, HTML, MIF, JadeTeX, or an XML representation of the flow object tree. Using its own non-standard system, it is also capable of transforming one SGML or XML DTD to another.
Author: The OpenJade Team [email protected]
There are three methods to install openjade 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 openjade Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install openjade using apt-get by running the following command:
sudo apt-get -y install openjadeInstall openjade Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install openjade using apt by running the following command:
sudo apt -y install openjadeInstall openjade 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 openjade using aptitude by running the following command:
sudo aptitude -y install openjadeHow To Uninstall openjade on Kali Linux
To uninstall only the openjade package we can use the following command:
sudo apt-get remove openjadeUninstall openjade And Its Dependencies
To uninstall openjade and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove openjadeRemove openjade Configurations and Data
To remove openjade configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge openjadeRemove openjade configuration, data, and all of its dependencies
We can use the following command to remove openjade configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge openjadeDependencies
openjade have the following dependencies:
References
Summary
In this tutorial we learn how to install openjade package on Kali Linux using different package management tools: apt, apt-get and aptitude.