Introduction
In this tutorial we learn how to install aephea
on Kali Linux.
What is aephea
aephea is:
Aephea is an HTML authoring framework. It enforces HTML well-formedness
with a simpler and stricter syntax, provides useful extensions and
abstractions as well as facilities for adding new ones, all in a single
unified approach that stays close to HTML itself. Some of Aephea’s
characteristics are a TeX-like syntax, dictionary stacks, iteration and a
focus on styling via CSS.
Please enable JavaScript
PUD (Portable Unix Documentation) is shipped with Aephea. It provides
mini-languages for authoring Unix manual pages and FAQ documents with output
both in HTML and troff.
Both Aephea and PUD are written in zoem, a high-level macro/programming
language with character filtering capabilities.
If you’d like to generate manpages, but don’t like troff syntax, and find
Perl’s POD too limited, Aephea’s PUD is likely useful for you. If you like
your documents to be available in both PDF and HTML, but find DocBook XML
too heavyweight (and aren’t really happy with Docbook XML’s baroque default
tagnames), you’ll like PUD.
There are three methods to install aephea
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 aephea Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install aephea
using apt-get
by running the following command:
sudo apt-get -y install aephea
Install aephea Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install aephea
using apt
by running the following command:
sudo apt -y install aephea
Install aephea 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 aephea
using aptitude
by running the following command:
sudo aptitude -y install aephea
How To Uninstall aephea on Kali Linux
To uninstall only the aephea
package we can use the following command:
sudo apt-get remove aephea
Uninstall aephea And Its Dependencies
To uninstall aephea
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove aephea
Remove aephea Configurations and Data
To remove aephea
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge aephea
Remove aephea configuration, data, and all of its dependencies
We can use the following command to remove aephea
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge aephea
Dependencies
aephea have the following dependencies:
References
Summary
In this tutorial we learn how to install aephea
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.