netproc command not found

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

Introduction

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

netproc: command not found

or when using sudo you get the following error message

sudo: netproc: command not found

Solutions to netproc: command not found

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

In Ubuntu netproc is provided by netproc package.

netproc is:

netproc monitors network traffic and tries to find out which process this traffic belongs to, this is useful to identify the processes that are consuming network resources and troubleshooting.

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

sudo apt-get -y install netproc

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

You can also use apt command to install netproc.

sudo apt -y install netproc

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

sudo aptitude install netproc

Summary

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