ipgrab command not found

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

Introduction

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

ipgrab: command not found

or when using sudo you get the following error message

sudo: ipgrab: command not found

Solutions to ipgrab: command not found

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

In Ubuntu ipgrab is provided by ipgrab package.

ipgrab is:

ipgrab is a network debugging utility not unlike tcpdump except that it prints out detailed header field information for data link, network and transport layers.

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

sudo apt-get -y install ipgrab

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

You can also use apt command to install ipgrab.

sudo apt -y install ipgrab

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

sudo aptitude install ipgrab

Summary

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