flent command not found

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

Introduction

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

flent: command not found

or when using sudo you get the following error message

sudo: flent: command not found

Solutions to flent: command not found

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

In Ubuntu flent is provided by flent package.

flent is:

The FLExible Network Tester: Python wrapper to run multiple simultaneous netperf/iperf/ping instances and aggregate the results.

Tests are specified as config files (which are really Python), and various parsers for tool output are supplied. At the moment, parsers for netperf in -D mode, iperf in csv mode and ping/ping6 in -D mode are supplied, as well as a generic parser for commands that just outputs a single number.

Several commands can be run in parallel and, provided they output timestamped values, (which netperf ping and iperf do, the latter with a small patch, available in the misc/ directory), the test data points can be aligned with each other in time, interpolating differences between the actual measurement points. This makes it possible to graph (e.g.) ping times before, during and after a link is loaded.

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

sudo apt-get -y install flent

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

You can also use apt command to install flent.

sudo apt -y install flent

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

sudo aptitude install flent

Summary

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