How To Install mauve on Debian 9
Introduction
In this tutorial we learn how to install mauve on Debian 9.
What is mauve
mauve is:
Mauve is intended to test several different varieties of the libraries. For instance, it will contain tests that are specific to a particular JDK version. Tags in the test files help the test framework decide which tests should or should not be run against a given runtime.
There are three methods to install mauve on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install mauve Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install mauve using apt-get by running the following command:
sudo apt-get -y install mauve
Install mauve Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install mauve using apt by running the following command:
sudo apt -y install mauve
Install mauve Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install mauve using aptitude by running the following command:
sudo aptitude -y install mauve
How To Uninstall mauve on Debian 9
To uninstall only the mauve package we can use the following command:
sudo apt-get remove mauve
Uninstall mauve And Its Dependencies
To uninstall mauve and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove mauve
Remove mauve Configurations and Data
To remove mauve configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge mauve
Remove mauve configuration, data, and all of its dependencies
We can use the following command to remove mauve configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge mauve
Dependencies
mauve have the following dependencies:
References
Summary
In this tutorial we learn how to install mauve package on Debian 9 using different package management tools: apt, apt-get and aptitude.