hcheck command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
hcheck: command not found
or when using sudo you get the following error message
sudo: hcheck: command not found
Solutions to hcheck: command not found
How To Fix hcheck: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu hcheck is provided by ganeti package.
ganeti is:
Ganeti is a virtual server cluster management tool built on top of the Xen and KVM virtualization technologies and other free software. It provides an automated environment to manage highly available virtual machine instances.
It is designed to facilitate cluster management of virtual servers using commodity hardware, and to provide fast and simple recovery after physical failures. It can take care of operations such as redundant disk creation and management, operating system installation (in cooperation with OS-specific install scripts), startup, shutdown, and failover of instances between physical systems.
This package installs the complete Ganeti system.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ganeti
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ganeti.
sudo apt -y install ganeti
Or if you have aptitude installed you can use the following command.
sudo aptitude install ganeti
Summary
In this tutorial we learn how to fix hcheck command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.