How To Install golang-github-containernetworking-plugin-dnsname on Kali Linux
Introduction
In this tutorial we learn how to install golang-github-containernetworking-plugin-dnsname
on Kali Linux.
What is golang-github-containernetworking-plugin-dnsname
golang-github-containernetworking-plugin-dnsname is:
This CNI plugin sets up the use of dnsmasq on a given CNI network so that Pods can resolve each other by name. When configured, the pod and its IP address are added to a network specific hosts file that dnsmasq reads in. Similarly, when a pod is removed from the network, it will remove the entry from the hosts file. Each CNI network will have its own dnsmasq instance.
The dnsname plugin was specifically designed for the Podman container engine.
There are three methods to install golang-github-containernetworking-plugin-dnsname
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 golang-github-containernetworking-plugin-dnsname Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install golang-github-containernetworking-plugin-dnsname
using apt-get
by running the following command:
sudo apt-get -y install golang-github-containernetworking-plugin-dnsname
Install golang-github-containernetworking-plugin-dnsname Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install golang-github-containernetworking-plugin-dnsname
using apt
by running the following command:
sudo apt -y install golang-github-containernetworking-plugin-dnsname
Install golang-github-containernetworking-plugin-dnsname 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 golang-github-containernetworking-plugin-dnsname
using aptitude
by running the following command:
sudo aptitude -y install golang-github-containernetworking-plugin-dnsname
How To Uninstall golang-github-containernetworking-plugin-dnsname on Kali Linux
To uninstall only the golang-github-containernetworking-plugin-dnsname
package we can use the following command:
sudo apt-get remove golang-github-containernetworking-plugin-dnsname
Uninstall golang-github-containernetworking-plugin-dnsname And Its Dependencies
To uninstall golang-github-containernetworking-plugin-dnsname
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove golang-github-containernetworking-plugin-dnsname
Remove golang-github-containernetworking-plugin-dnsname Configurations and Data
To remove golang-github-containernetworking-plugin-dnsname
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge golang-github-containernetworking-plugin-dnsname
Remove golang-github-containernetworking-plugin-dnsname configuration, data, and all of its dependencies
We can use the following command to remove golang-github-containernetworking-plugin-dnsname
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge golang-github-containernetworking-plugin-dnsname
Dependencies
golang-github-containernetworking-plugin-dnsname have the following dependencies:
References
Summary
In this tutorial we learn how to install golang-github-containernetworking-plugin-dnsname
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.