gnt-storage command not found

In this troubleshooting guide we learn how to fix gnt-storage command not found error message

Introduction

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

gnt-storage: command not found

or when using sudo you get the following error message

sudo: gnt-storage: command not found

Solutions to gnt-storage: command not found

How To Fix gnt-storage: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu gnt-storage 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 gnt-storage command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.