dhcpstarv command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
dhcpstarv: command not found
or when using sudo you get the following error message
sudo: dhcpstarv: command not found
Solutions to dhcpstarv: command not found
How To Fix dhcpstarv: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu dhcpstarv is provided by dhcpstarv package.
dhcpstarv is:
Dhcpstarv is tool that implements DHCP starvation attack. It requests DHCP leases on a specified interface, save them and renew on regular basis.
To fix this problem, we can install more using the command below.
sudo apt-get -y install dhcpstarv
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install dhcpstarv.
sudo apt -y install dhcpstarv
Or if you have aptitude installed you can use the following command.
sudo aptitude install dhcpstarv
Summary
In this tutorial we learn how to fix dhcpstarv command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.