How To Install eg25-manager on Debian 12

Learn how to install eg25-manager on Debian 12 with this tutorial. eg25-manager is Manager daemon for the Quectel EG25 modem

Introduction

In this tutorial we learn how to install eg25-manager on Debian 12.

What is eg25-manager

eg25-manager is:

eg25-manager is a daemon aimed at configuring and monitoring the Quectel EG25 modem on a running system. It is used on the PinePhone (Pro) and performs the following functions:

  • power on/off
  • startup configuration using AT commands
  • AGPS data upload
  • status monitoring (and restart if it becomes unavailable)

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

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

sudo apt-get update

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

sudo apt-get -y install eg25-manager

Install eg25-manager Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install eg25-manager

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

sudo aptitude -y install eg25-manager

How To Uninstall eg25-manager on Debian 12

To uninstall only the eg25-manager package we can use the following command:

sudo apt-get remove eg25-manager

Uninstall eg25-manager And Its Dependencies

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

sudo apt-get -y autoremove eg25-manager

Remove eg25-manager Configurations and Data

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

sudo apt-get -y purge eg25-manager

Remove eg25-manager configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge eg25-manager

Dependencies

eg25-manager have the following dependencies:

References

Summary

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