How To Install libsnmp-session-perl on Debian 10

Learn how to install libsnmp-session-perl on Debian 10 with this tutorial. libsnmp-session-perl is Perl support for accessing SNMP-aware devices

Introduction

In this tutorial we learn how to install libsnmp-session-perl on Debian 10.

What is libsnmp-session-perl

libsnmp-session-perl is:

SNMP_Session contains support for accessing SNMP-aware devices (routers, network interfaces of machines running an SNMP daemon, Squid, etc) from within Perl applications.

For more information, see https://github.com/sleinen/snmp-session.

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

Install libsnmp-session-perl Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install libsnmp-session-perl

Install libsnmp-session-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libsnmp-session-perl using apt by running the following command:

sudo apt -y install libsnmp-session-perl

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

sudo aptitude -y install libsnmp-session-perl

How To Uninstall libsnmp-session-perl on Debian 10

To uninstall only the libsnmp-session-perl package we can use the following command:

sudo apt-get remove libsnmp-session-perl

Uninstall libsnmp-session-perl And Its Dependencies

To uninstall libsnmp-session-perl and its dependencies that are no longer needed by Debian 10, we can use the command below:

sudo apt-get -y autoremove libsnmp-session-perl

Remove libsnmp-session-perl Configurations and Data

To remove libsnmp-session-perl configuration and data from Debian 10 we can use the following command:

sudo apt-get -y purge libsnmp-session-perl

Remove libsnmp-session-perl configuration, data, and all of its dependencies

We can use the following command to remove libsnmp-session-perl configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libsnmp-session-perl

Dependencies

libsnmp-session-perl have the following dependencies:

References

Summary

In this tutorial we learn how to install libsnmp-session-perl package on Debian 10 using different package management tools: apt, apt-get and aptitude.