How To Install autorevision on Kali Linux
Introduction
In this tutorial we learn how to install autorevision on Kali Linux.
What is autorevision
autorevision is:
Extracts metadata about the current revision from your repository. This program is meant to be used by project build systems to extract properties that can be used in software version strings. Repository types supported include git, hg, bzr, and svn. It can create files containing variable and macro definitions suitable for a variety of programming languages and other info formats. Emitted information includes the ID of the most recent commit, its branch, its date, and several other useful pieces of meta-information. There is support for reading and writing a cache file so autorevision will remain useful during a build from an unpacked distribution tarball.
There are three methods to install autorevision 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 autorevision Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install autorevision using apt-get by running the following command:
sudo apt-get -y install autorevisionInstall autorevision Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install autorevision using apt by running the following command:
sudo apt -y install autorevisionInstall autorevision 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 autorevision using aptitude by running the following command:
sudo aptitude -y install autorevisionHow To Uninstall autorevision on Kali Linux
To uninstall only the autorevision package we can use the following command:
sudo apt-get remove autorevisionUninstall autorevision And Its Dependencies
To uninstall autorevision and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove autorevisionRemove autorevision Configurations and Data
To remove autorevision configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge autorevisionRemove autorevision configuration, data, and all of its dependencies
We can use the following command to remove autorevision configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge autorevisionDependencies
autorevision have the following dependencies:
References
Summary
In this tutorial we learn how to install autorevision package on Kali Linux using different package management tools: apt, apt-get and aptitude.