graphdefang.pl command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
graphdefang.pl: command not found
or when using sudo you get the following error message
sudo: graphdefang.pl: command not found
Solutions to graphdefang.pl: command not found
How To Fix graphdefang.pl: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu graphdefang.pl is provided by graphdefang package.
graphdefang is:
GraphDefang is a configurable utility that parses arbitrary syslog entries and creates a set of configurable charts (PNG files) with the data. These files can be written to disk or displayed by a web server through a CGI script.
To fix this problem, we can install more using the command below.
sudo apt-get -y install graphdefang
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install graphdefang.
sudo apt -y install graphdefang
Or if you have aptitude installed you can use the following command.
sudo aptitude install graphdefang
Summary
In this tutorial we learn how to fix graphdefang.pl command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.