snmpttconvert command not found

In this troubleshooting guide we learn how to fix snmpttconvert command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

snmpttconvert: command not found

or when using sudo you get the following error message

sudo: snmpttconvert: command not found

Solutions to snmpttconvert: command not found

How To Fix snmpttconvert: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu snmpttconvert is provided by snmptt package.

snmptt is:

SNMPTT (SNMP Trap Translator) is an SNMP trap handler written in Perl for use with the Net-SNMP / UCD-SNMP snmptrapd program (www.net-snmp.org).

To fix this problem, we can install more using the command below.

sudo apt-get -y install snmptt

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install snmptt.

sudo apt -y install snmptt

Or if you have aptitude installed you can use the following command.

sudo aptitude install snmptt

Summary

In this tutorial we learn how to fix snmpttconvert command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.