thpot command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
thpot: command not found
or when using sudo you get the following error message
sudo: thpot: command not found
Solutions to thpot: command not found
How To Fix thpot: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu thpot is provided by tinyhoneypot package.
tinyhoneypot is:
Small honeypot provides an environment which can be used to lure attackers into it. It provides sample responses that simulate a set of services (http, pop3, ftp, ssh, mssql and shell) and logs all the connections to these services for later auditing.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tinyhoneypot
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tinyhoneypot.
sudo apt -y install tinyhoneypot
Or if you have aptitude installed you can use the following command.
sudo aptitude install tinyhoneypot
Summary
In this tutorial we learn how to fix thpot command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.