How To Install sgml2x on Kali Linux
Introduction
In this tutorial we learn how to install sgml2x
on Kali Linux.
What is sgml2x
sgml2x is:
sgml2x allows to easily format SGML and XML documents using DSSSL stylesheets, and provides the following features:
- Multiple possible stylesheets per document class
- Easy specification of style-sheets using sort aliases
- Easy integration of new stylesheets by adding a simple new definition file in a configuration directory
- The caller can specify a PATH-like list of configuration directories, defaulting to one system-wide, one per-user, and one per-project configuration directory
- Automatic selection of a default stylesheet to be used
It will currently be most useful with one of the suggested sets of DSSSL stylesheets for DocBook.
There are three methods to install sgml2x
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 sgml2x Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install sgml2x
using apt-get
by running the following command:
sudo apt-get -y install sgml2x
Install sgml2x Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install sgml2x
using apt
by running the following command:
sudo apt -y install sgml2x
Install sgml2x 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 update
After updating apt database, We can install sgml2x
using aptitude
by running the following command:
sudo aptitude -y install sgml2x
How To Uninstall sgml2x on Kali Linux
To uninstall only the sgml2x
package we can use the following command:
sudo apt-get remove sgml2x
Uninstall sgml2x And Its Dependencies
To uninstall sgml2x
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove sgml2x
Remove sgml2x Configurations and Data
To remove sgml2x
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge sgml2x
Remove sgml2x configuration, data, and all of its dependencies
We can use the following command to remove sgml2x
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge sgml2x
Dependencies
sgml2x have the following dependencies:
References
Summary
In this tutorial we learn how to install sgml2x
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.