uvt-kvm command not found

In this troubleshooting guide we learn how to fix uvt-kvm command not found error message

Introduction

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

uvt-kvm: command not found

or when using sudo you get the following error message

sudo: uvt-kvm: command not found

Solutions to uvt-kvm: command not found

How To Fix uvt-kvm: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu uvt-kvm is provided by uvtool-libvirt package.

uvtool-libvirt is:

This package provides libvirt-specific tools for consuming Ubuntu Cloud images. Since it depends on libvirt, installing this package will also install libvirt which by defaults configures it with a bridge on your system.

To fix this problem, we can install more using the command below.

sudo apt-get -y install uvtool-libvirt

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install uvtool-libvirt.

sudo apt -y install uvtool-libvirt

Or if you have aptitude installed you can use the following command.

sudo aptitude install uvtool-libvirt

Summary

In this tutorial we learn how to fix uvt-kvm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.