How To Install gvmd-common on Ubuntu 22.04
Introduction
In this tutorial we learn how to install gvmd-common on Ubuntu 22.04.
What is gvmd-common
gvmd-common is:
The Greenbone Vulnerability Manager is the central management service between security scanners and the user clients.
It manages the storage of any vulnerability management configurations and of the scan results. Access to data, control commands and workflows is offered via the XML-based Greenbone Management Protocol (GMP). The primary scanner, openVAS Scanner is controlled directly via protocol OTP while any other remote scanner is coupled with the Open Scanner Protocol (OSP).
This package contains the common gvmd files shared by all architectures.
There are three methods to install gvmd-common on Ubuntu 22.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install gvmd-common Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install gvmd-common using apt-get by running the following command:
sudo apt-get -y install gvmd-common
Install gvmd-common Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install gvmd-common using apt by running the following command:
sudo apt -y install gvmd-common
Install gvmd-common 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 Ubuntu. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install gvmd-common using aptitude by running the following command:
sudo aptitude -y install gvmd-common
How To Uninstall gvmd-common on Ubuntu 22.04
To uninstall only the gvmd-common package we can use the following command:
sudo apt-get remove gvmd-common
Uninstall gvmd-common And Its Dependencies
To uninstall gvmd-common and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:
sudo apt-get -y autoremove gvmd-common
Remove gvmd-common Configurations and Data
To remove gvmd-common configuration and data from Ubuntu 22.04 we can use the following command:
sudo apt-get -y purge gvmd-common
Remove gvmd-common configuration, data, and all of its dependencies
We can use the following command to remove gvmd-common configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge gvmd-common
References
Summary
In this tutorial we learn how to install gvmd-common package on Ubuntu 22.04 using different package management tools: apt, apt-get and aptitude.