How To Install ruby-reverse-markdown on Kali Linux
Introduction
In this tutorial we learn how to install ruby-reverse-markdown on Kali Linux.
What is ruby-reverse-markdown
ruby-reverse-markdown is:
reverse_markdown transforms HTML into Markdown. It is useful, for example, to import HTML into a Markdown based application. It supports all the established tags and can also be extended, it can deal with nested lists, inline and block code, and supports blockquotes.
It supports all the established HTML tags and requires Ruby 1.9.3 or higher.
There are three methods to install ruby-reverse-markdown 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 ruby-reverse-markdown Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install ruby-reverse-markdown using apt-get by running the following command:
sudo apt-get -y install ruby-reverse-markdownInstall ruby-reverse-markdown Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install ruby-reverse-markdown using apt by running the following command:
sudo apt -y install ruby-reverse-markdownInstall ruby-reverse-markdown 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 ruby-reverse-markdown using aptitude by running the following command:
sudo aptitude -y install ruby-reverse-markdownHow To Uninstall ruby-reverse-markdown on Kali Linux
To uninstall only the ruby-reverse-markdown package we can use the following command:
sudo apt-get remove ruby-reverse-markdownUninstall ruby-reverse-markdown And Its Dependencies
To uninstall ruby-reverse-markdown and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove ruby-reverse-markdownRemove ruby-reverse-markdown Configurations and Data
To remove ruby-reverse-markdown configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge ruby-reverse-markdownRemove ruby-reverse-markdown configuration, data, and all of its dependencies
We can use the following command to remove ruby-reverse-markdown configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge ruby-reverse-markdownDependencies
ruby-reverse-markdown have the following dependencies:
References
Summary
In this tutorial we learn how to install ruby-reverse-markdown package on Kali Linux using different package management tools: apt, apt-get and aptitude.