How To Install nuntius on Debian 12

Learn how to install nuntius on Debian 12 with this tutorial. nuntius is share notifications from Android phone or tablet via Bluetooth or LAN

Introduction

In this tutorial we learn how to install nuntius on Debian 12.

What is nuntius

nuntius is:

Deliver notifications from your Android phone or tablet to your computer using Bluetooth or LAN. To use, you will need to install a companion tool on your phone or tablet and either pair it via Bluetooth or point it at an on-screen QR code.

You may need to restart your session to auto-start nuntius.

This is similar to KDE Connect (Debian package kdeconnect), albeit much less mature, but uses of GNOME infrastructure instead of KDE infrastructure, which under some circumstances can result is a significantly smaller total footprint.

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

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

sudo apt-get update

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

sudo apt-get -y install nuntius

Install nuntius Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install nuntius using apt by running the following command:

sudo apt -y install nuntius

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

sudo aptitude -y install nuntius

How To Uninstall nuntius on Debian 12

To uninstall only the nuntius package we can use the following command:

sudo apt-get remove nuntius

Uninstall nuntius And Its Dependencies

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

sudo apt-get -y autoremove nuntius

Remove nuntius Configurations and Data

To remove nuntius configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge nuntius

Remove nuntius configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge nuntius

Dependencies

nuntius have the following dependencies:

References

Summary

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