How To Install gadmin-openvpn-server-dbg on Kali Linux

In this tutorial we learn how to install gadmin-openvpn-server-dbg on Kali Linux. gadmin-openvpn-server-dbg is GTK+ configuration tool for openvpn (debug for server)

Introduction

In this tutorial we learn how to install gadmin-openvpn-server-dbg on Kali Linux.

What is gadmin-openvpn-server-dbg

gadmin-openvpn-server-dbg is:

gadmin-openvpn-server is a fast and easy to use GTK+ administration tool for the OpenVPN server.

This package contains the debugging symbols.

There are three methods to install gadmin-openvpn-server-dbg 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 gadmin-openvpn-server-dbg Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install gadmin-openvpn-server-dbg using apt-get by running the following command:

sudo apt-get -y install gadmin-openvpn-server-dbg

Install gadmin-openvpn-server-dbg Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install gadmin-openvpn-server-dbg using apt by running the following command:

sudo apt -y install gadmin-openvpn-server-dbg

Install gadmin-openvpn-server-dbg 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 gadmin-openvpn-server-dbg using aptitude by running the following command:

sudo aptitude -y install gadmin-openvpn-server-dbg

How To Uninstall gadmin-openvpn-server-dbg on Kali Linux

To uninstall only the gadmin-openvpn-server-dbg package we can use the following command:

sudo apt-get remove gadmin-openvpn-server-dbg

Uninstall gadmin-openvpn-server-dbg And Its Dependencies

To uninstall gadmin-openvpn-server-dbg and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove gadmin-openvpn-server-dbg

Remove gadmin-openvpn-server-dbg Configurations and Data

To remove gadmin-openvpn-server-dbg configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge gadmin-openvpn-server-dbg

Remove gadmin-openvpn-server-dbg configuration, data, and all of its dependencies

We can use the following command to remove gadmin-openvpn-server-dbg configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge gadmin-openvpn-server-dbg

Dependencies

gadmin-openvpn-server-dbg have the following dependencies:

References

Summary

In this tutorial we learn how to install gadmin-openvpn-server-dbg package on Kali Linux using different package management tools: apt, apt-get and aptitude.