pmconfirm command not found

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

Introduction

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

pmconfirm: command not found

or when using sudo you get the following error message

sudo: pmconfirm: command not found

Solutions to pmconfirm: command not found

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

In Ubuntu pmconfirm is provided by pcp-gui package.

pcp-gui is:

The PCP GUI package primarily includes visualisation tools for monitoring systems using live and archived Performance Co-Pilot (PCP) sources.

These tools have dependencies on graphics libraries which may or may not be installed on server machines, so PCP GUI is delivered as a separate package to the core PCP infrastructure.

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

sudo apt-get -y install pcp-gui

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

You can also use apt command to install pcp-gui.

sudo apt -y install pcp-gui

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

sudo aptitude install pcp-gui

Summary

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