intel_l3_parity command not found

In this troubleshooting guide we learn how to fix intel_l3_parity command not found error message

Introduction

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

intel_l3_parity: command not found

or when using sudo you get the following error message

sudo: intel_l3_parity: command not found

Solutions to intel_l3_parity: command not found

How To Fix intel_l3_parity: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu intel_l3_parity is provided by intel-gpu-tools package.

intel-gpu-tools is:

intel-gpu-tools is a package of tools for debugging the Intel graphics driver, including a GPU hang dumping program, performance monitor, and performance microbenchmarks for regression testing the DRM.

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

sudo apt-get -y install intel-gpu-tools

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

You can also use apt command to install intel-gpu-tools.

sudo apt -y install intel-gpu-tools

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

sudo aptitude install intel-gpu-tools

Summary

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