trend command not found

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

Introduction

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

trend: command not found

or when using sudo you get the following error message

sudo: trend: command not found

Solutions to trend: command not found

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

In Ubuntu trend is provided by trend package.

trend is:

trend is a general-purpose, efficient trend graph for “live” data. Data is read in ASCII form from a file or continuously from a FIFO and displayed in real-time into a multi-pass trend (much like a CRT oscilloscope). trend can be used as a rapid analysis tool for progressive or time-based data series together with trivial scripting.

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

sudo apt-get -y install trend

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

You can also use apt command to install trend.

sudo apt -y install trend

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

sudo aptitude install trend

Summary

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