pcsd command not found

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

Introduction

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

pcsd: command not found

or when using sudo you get the following error message

sudo: pcsd: command not found

Solutions to pcsd: command not found

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

In Ubuntu pcsd is provided by pcs package.

pcs is:

pcs is a corosync and pacemaker configuration tool. It permits users to easily view, modify and create pacemaker based clusters.

pcs also provides pcsd, which operates as a GUI and remote server for pcs. Together pcs and pcsd form the recommended configuration tool for use with pacemaker.

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

sudo apt-get -y install pcs

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

You can also use apt command to install pcs.

sudo apt -y install pcs

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

sudo aptitude install pcs

Summary

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