intel-virtual-output command not found

In this troubleshooting guide we learn how to fix intel-virtual-output command not found error message

Introduction

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

intel-virtual-output: command not found

or when using sudo you get the following error message

sudo: intel-virtual-output: command not found

Solutions to intel-virtual-output: command not found

How To Fix intel-virtual-output: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu intel-virtual-output is provided by xserver-xorg-video-intel package.

xserver-xorg-video-intel is:

This package provides the driver for the Intel i8xx and i9xx family of chipsets, including i810, i815, i830, i845, i855, i865, i915, i945 and i965 series chips.

This package also provides XvMC (XVideo Motion Compensation) drivers for i810/i815 and i9xx and newer chipsets.

This package is built from the X.org xf86-video-intel driver module.

The use of this driver is discouraged if your hw is new enough (ca. 2007 and newer). You can try uninstalling this driver and let the server use its builtin modesetting driver instead.

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

sudo apt-get -y install xserver-xorg-video-intel

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

You can also use apt command to install xserver-xorg-video-intel.

sudo apt -y install xserver-xorg-video-intel

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

sudo aptitude install xserver-xorg-video-intel

Summary

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