sbd command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sbd: command not found
or when using sudo you get the following error message
sudo: sbd: command not found
Solutions to sbd: command not found
How To Fix sbd: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sbd is provided by sbd package.
sbd is:
SBD provides a node fencing mechanism (Shoot the other node in the head, STONITH) for Pacemaker-based clusters through the exchange of messages via shared block storage such as for example a SAN, iSCSI, FCoE. It can be used as a STONITH mechanism in all configurations that have reliable shared storage.
To fix this problem, we can install more using the command below.
sudo apt-get -y install sbd
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sbd.
sudo apt -y install sbd
Or if you have aptitude installed you can use the following command.
sudo aptitude install sbd
Summary
In this tutorial we learn how to fix sbd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.