vmfs-lvm command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
vmfs-lvm: command not found
or when using sudo you get the following error message
sudo: vmfs-lvm: command not found
Solutions to vmfs-lvm: command not found
How To Fix vmfs-lvm: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu vmfs-lvm is provided by vmfs-tools package.
vmfs-tools is:
VMFS is a clustered filesystem designed to store virtual machine disks for VMware ESX or ESXi Server hosts. This set of tools allows to access these filesystems from some other non ESX/ESXi host for e.g. maintenance tasks.
Only read access is available at the moment, but write access is under works. Multiple extents are supported.
The VMFS can be accessed with a command line tool or mounted through a userspace filesystem (FUSE-based).
To fix this problem, we can install more using the command below.
sudo apt-get -y install vmfs-tools
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install vmfs-tools.
sudo apt -y install vmfs-tools
Or if you have aptitude installed you can use the following command.
sudo aptitude install vmfs-tools
Summary
In this tutorial we learn how to fix vmfs-lvm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.