How To Install plasma-nm on Debian 12

Learn how to install plasma-nm on Debian 12 with this tutorial. plasma-nm is Plasma network connections management

Introduction

In this tutorial we learn how to install plasma-nm on Debian 12.

What is plasma-nm

plasma-nm is:

plasma-nm provides a Plasma applet written in QML for managing network connections using Network Manager.

This package is part of the KDE Plasma.

There are three methods to install plasma-nm 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 plasma-nm Using apt-get

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

sudo apt-get update

After updating apt database, We can install plasma-nm using apt-get by running the following command:

sudo apt-get -y install plasma-nm

Install plasma-nm Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install plasma-nm using apt by running the following command:

sudo apt -y install plasma-nm

Install plasma-nm 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 plasma-nm using aptitude by running the following command:

sudo aptitude -y install plasma-nm

How To Uninstall plasma-nm on Debian 12

To uninstall only the plasma-nm package we can use the following command:

sudo apt-get remove plasma-nm

Uninstall plasma-nm And Its Dependencies

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

sudo apt-get -y autoremove plasma-nm

Remove plasma-nm Configurations and Data

To remove plasma-nm configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge plasma-nm

Remove plasma-nm configuration, data, and all of its dependencies

We can use the following command to remove plasma-nm configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge plasma-nm

Dependencies

plasma-nm have the following dependencies:

References

Summary

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