snmptthandler command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
snmptthandler: command not found
or when using sudo you get the following error message
sudo: snmptthandler: command not found
Solutions to snmptthandler: command not found
How To Fix snmptthandler: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu snmptthandler 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 snmptthandler command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.