jnettop command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
jnettop: command not found
or when using sudo you get the following error message
sudo: jnettop: command not found
Solutions to jnettop: command not found
How To Fix jnettop: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu jnettop is provided by jnettop package.
jnettop is:
jNettop captures traffic coming across the host it is running on and displays streams sorted by bandwidth they use. Result is a nice listing of communication on network by host and port, how many bytes went through this transport and the bandwidth it is consuming.
To fix this problem, we can install more using the command below.
sudo apt-get -y install jnettop
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install jnettop.
sudo apt -y install jnettop
Or if you have aptitude installed you can use the following command.
sudo aptitude install jnettop
Summary
In this tutorial we learn how to fix jnettop command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.