pcp2influxdb command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pcp2influxdb: command not found
or when using sudo you get the following error message
sudo: pcp2influxdb: command not found
Solutions to pcp2influxdb: command not found
How To Fix pcp2influxdb: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pcp2influxdb is provided by pcp-export-pcp2influxdb package.
pcp-export-pcp2influxdb is:
Performance Co-Pilot (PCP) front-end tools for exporting metric values to InfluxDB (https://influxdata.com/time-series-platform/influxdb).
To fix this problem, we can install more using the command below.
sudo apt-get -y install pcp-export-pcp2influxdb
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pcp-export-pcp2influxdb.
sudo apt -y install pcp-export-pcp2influxdb
Or if you have aptitude installed you can use the following command.
sudo aptitude install pcp-export-pcp2influxdb
Summary
In this tutorial we learn how to fix pcp2influxdb command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.