How To Install opennds-daemon-common on Debian 12

Learn how to install opennds-daemon-common on Debian 12 with this tutorial. opennds-daemon-common is manage access to public internet access (service helper scripts)

Introduction

In this tutorial we learn how to install opennds-daemon-common on Debian 12.

What is opennds-daemon-common

opennds-daemon-common is:

openNDS controls access to a public Internet connection and offers a simple way to open a Hotspot for wireless networks. It provides a captive portal to inform users about the services and optionally have them acknowledge the terms and conditions of its use.

This package contains helper scripts for the openNDS service daemon.

There are three methods to install opennds-daemon-common on Debian 12. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install opennds-daemon-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 opennds-daemon-common using apt-get by running the following command:

sudo apt-get -y install opennds-daemon-common

Install opennds-daemon-common Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install opennds-daemon-common using apt by running the following command:

sudo apt -y install opennds-daemon-common

Install opennds-daemon-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 Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install opennds-daemon-common using aptitude by running the following command:

sudo aptitude -y install opennds-daemon-common

How To Uninstall opennds-daemon-common on Debian 12

To uninstall only the opennds-daemon-common package we can use the following command:

sudo apt-get remove opennds-daemon-common

Uninstall opennds-daemon-common And Its Dependencies

To uninstall opennds-daemon-common and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove opennds-daemon-common

Remove opennds-daemon-common Configurations and Data

To remove opennds-daemon-common configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge opennds-daemon-common

Remove opennds-daemon-common configuration, data, and all of its dependencies

We can use the following command to remove opennds-daemon-common configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge opennds-daemon-common

Dependencies

opennds-daemon-common have the following dependencies:

References

Summary

In this tutorial we learn how to install opennds-daemon-common package on Debian 12 using different package management tools: apt, apt-get and aptitude.