lkvm command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
lkvm: command not found
or when using sudo you get the following error message
sudo: lkvm: command not found
Solutions to lkvm: command not found
How To Fix lkvm: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu lkvm is provided by kvmtool package.
kvmtool is:
kvmtool is a lightweight tool for hosting KVM guests. As a pure virtualization tool it only supports guests using the same architecture, though it supports running 32-bit guests on those 64-bit architectures that allow this.
To fix this problem, we can install more using the command below.
sudo apt-get -y install kvmtool
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install kvmtool.
sudo apt -y install kvmtool
Or if you have aptitude installed you can use the following command.
sudo aptitude install kvmtool
Summary
In this tutorial we learn how to fix lkvm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.