How To Install openvpn-auth-radius-dbg on Debian 9

In this tutorial we learn how to install openvpn-auth-radius-dbg on Debian 9. openvpn-auth-radius-dbg is debugging symbols for openvpn-plugin-radius

Introduction

In this tutorial we learn how to install openvpn-auth-radius-dbg on Debian 9.

What is openvpn-auth-radius-dbg

openvpn-auth-radius-dbg is:

openvpn-auth-radius is a plugin for OpenVPN 2.x that implements authentication of users against a RADIUS server.

This package contains the debugging symbols for openvpn-auth-radius.

There are three methods to install openvpn-auth-radius-dbg 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 openvpn-auth-radius-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 openvpn-auth-radius-dbg using apt-get by running the following command:

sudo apt-get -y install openvpn-auth-radius-dbg

Install openvpn-auth-radius-dbg Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install openvpn-auth-radius-dbg

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

sudo aptitude -y install openvpn-auth-radius-dbg

How To Uninstall openvpn-auth-radius-dbg on Debian 9

To uninstall only the openvpn-auth-radius-dbg package we can use the following command:

sudo apt-get remove openvpn-auth-radius-dbg

Uninstall openvpn-auth-radius-dbg And Its Dependencies

To uninstall openvpn-auth-radius-dbg and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove openvpn-auth-radius-dbg

Remove openvpn-auth-radius-dbg Configurations and Data

To remove openvpn-auth-radius-dbg configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge openvpn-auth-radius-dbg

Remove openvpn-auth-radius-dbg configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge openvpn-auth-radius-dbg

Dependencies

openvpn-auth-radius-dbg have the following dependencies:

References

Summary

In this tutorial we learn how to install openvpn-auth-radius-dbg package on Debian 9 using different package management tools: apt, apt-get and aptitude.