garbd command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
garbd: command not found
or when using sudo you get the following error message
sudo: garbd: command not found
Solutions to garbd: command not found
How To Fix garbd: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu garbd is provided by galera-arbitrator-3 package.
galera-arbitrator-3 is:
Galera is a fast synchronous multimaster wsrep provider (replication engine) for transactional databases and similar applications. For more information about wsrep API see http://launchpad.net/wsrep. For a description of Galera replication engine see http://galeracluster.com.
This package contains the Galera arbitrator daemon (garbd).
To fix this problem, we can install more using the command below.
sudo apt-get -y install galera-arbitrator-3
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install galera-arbitrator-3.
sudo apt -y install galera-arbitrator-3
Or if you have aptitude installed you can use the following command.
sudo aptitude install galera-arbitrator-3
Summary
In this tutorial we learn how to fix garbd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.