
Introduction
In this tutorial we learn how to install sisu-markup-samples on Kali Linux.
What is sisu-markup-samples
sisu-markup-samples is:
The document samples provided include:
- “Free as in Freedom (2.0)”, Sam Williams, Richard M. Stallman
- “Free as in Freedom”, Sam Williams
- “Viral Spiral”, David Bollier
- “The Wealth of Networks”, Jochai Benkler
- “Free Culture”, Lawrence Lessig
- “CONTENT”, Cory Doctorow
- “Two Bits”, Christopher Kelty
- “Democratizing Innovation”, Eric von Hippel
- “Free For All”, Peter Wayner
- “The Cathedral and the Bazaar”, Eric S. Raymond
- “Little Brother”, Cory Doctorow
- “Down and Out in the Magic Kingdom”, Cory Doctorow
- “For the Win”, Cory Doctorow
- “Accelerando”, Charles Stross
and a couple of additional texts.
The documents were shared by their authors under Creative Commons licenses,
that permit their distribution, though not within the main Debian archive by
Debian policy.
- “Free As In Freedom”, on RMS by Sam Williams, is available as a markup
sample within the package sisu
SiSU is a lightweight markup based, command line oriented, document
structuring, publishing and search framework for document collections.
With minimal preparation of a plain-text, (UTF-8) file, using its native
markup syntax in your text editor of choice, SiSU can generate various
document formats (most of which share a common object numbering system for
locating content), including plain text, HTML, XHTML, XML, EPUB, OpenDocument
text (ODF:ODT), LaTeX, PDF files, and populate an SQL database with objects
(roughly paragraph-sized chunks) so searches may be performed and matches
returned with that degree of granularity: your search criteria is met by these
documents and at these locations within each document. Object numbering is
particularly suitable for “published” works (finalized texts as opposed to
works that are frequently changed or updated) for which it provides a fixed
means of reference of content. Document outputs also share semantic meta-data
provided.
SiSU also provides concordance files, document content certificates and
manifests of generated output.
man pages, and interactive help are provided.
Dependencies for additional features are taken care of in sisu related
packages.
The dummy package sisu-complete together with sisu-markup-samples installs
the whole of SiSU.
There are three methods to install sisu-markup-samples 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 sisu-markup-samples Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install sisu-markup-samples using apt-get by running the following command:
sudo apt-get -y install sisu-markup-samples
Install sisu-markup-samples Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install sisu-markup-samples using apt by running the following command:
sudo apt -y install sisu-markup-samples
Install sisu-markup-samples 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 sisu-markup-samples using aptitude by running the following command:
sudo aptitude -y install sisu-markup-samples
How To Uninstall sisu-markup-samples on Kali Linux
To uninstall only the sisu-markup-samples package we can use the following command:
sudo apt-get remove sisu-markup-samples
Uninstall sisu-markup-samples And Its Dependencies
To uninstall sisu-markup-samples and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove sisu-markup-samples
Remove sisu-markup-samples Configurations and Data
To remove sisu-markup-samples configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge sisu-markup-samples
Remove sisu-markup-samples configuration, data, and all of its dependencies
We can use the following command to remove sisu-markup-samples configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge sisu-markup-samples
Dependencies
sisu-markup-samples have the following dependencies:
References
Summary
In this tutorial we learn how to install sisu-markup-samples package on Kali Linux using different package management tools: apt, apt-get and aptitude.
