How To Install libsnmp35-dbg on Ubuntu 20.04

In this tutorial we learn how to install libsnmp35-dbg on Ubuntu 20.04. libsnmp35-dbg is SNMP (Simple Network Management Protocol) library debug SNMP (Simple Network Management Protocol) library debug

Introduction

In this tutorial we learn how to install libsnmp35-dbg on Ubuntu 20.04.

What is libsnmp35-dbg

libsnmp35-dbg is:

The Simple Network Management Protocol (SNMP) provides a framework for the exchange of management information between agents (servers) and clients.

This package contains the debug symbols for the Net-SNMP libraries. Build-Ids: 1e8a6a3f3aaba68797dee0dc6b60374b9212df12 2397d7407d292e1fa59796888f9087f07118abb0 953fa79b2acba52568dd454a11eead7d04d84511 b3d2122cc4ea276cb95f66d7d196fa7212471532 ca4b261e763c3496488c4bb41e8c9d5b642d6dc1 cf2649b3dc95814702598c17e518b1ce41280fbc

Package: libsnmp35-dbg Architecture: amd64 Version: 5.8+dfsg-2ubuntu2 Priority: optional Section: debug Source: net-snmp Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Net-SNMP Packaging Team [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 3011 Depends: libsnmp35 (= 5.8+dfsg-2ubuntu2) Filename: pool/main/n/net-snmp/libsnmp35-dbg_5.8+dfsg-2ubuntu2_amd64.deb Size: 2060604 MD5sum: de4dd2cc038cf1084d3041fd4502e49a SHA1: f6770eee439e1732ab6d14c03da7424c1154aeaa SHA256: 18a0dad02c1f03699d95ebbb8e19011cd3b713571fbb0d5b0909b6ed69ee05c4 Homepage: http://net-snmp.sourceforge.net/ Description-en: SNMP (Simple Network Management Protocol) library debug The Simple Network Management Protocol (SNMP) provides a framework for the exchange of management information between agents (servers) and clients.

This package contains the debug symbols for the Net-SNMP libraries. Build-Ids: 14e05a0f561ba50a2d2fd239293cc834b5259664 1bb85725c7e757f075b2b0b980fceaa7e49f0cf1 2397d7407d292e1fa59796888f9087f07118abb0 d047ba7301f03abacfa2bebade21e695517bab2a d5cdd84e06743479b44119ae77c1c4571b01ac55 fd7e4fab8161e9dcb7d397ce5fafe3df8d14c7c4

There are three methods to install libsnmp35-dbg on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libsnmp35-dbg Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install libsnmp35-dbg

Install libsnmp35-dbg Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libsnmp35-dbg

Install libsnmp35-dbg 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 Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libsnmp35-dbg using aptitude by running the following command:

sudo aptitude -y install libsnmp35-dbg

How To Uninstall libsnmp35-dbg on Ubuntu 20.04

To uninstall only the libsnmp35-dbg package we can use the following command:

sudo apt-get remove libsnmp35-dbg

Uninstall libsnmp35-dbg And Its Dependencies

To uninstall libsnmp35-dbg and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove libsnmp35-dbg

Remove libsnmp35-dbg Configurations and Data

To remove libsnmp35-dbg configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge libsnmp35-dbg

Remove libsnmp35-dbg configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libsnmp35-dbg

References

Summary

In this tutorial we learn how to install libsnmp35-dbg package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.