glmemperf command not found

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

Introduction

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

glmemperf: command not found

or when using sudo you get the following error message

sudo: glmemperf: command not found

Solutions to glmemperf: command not found

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

In Ubuntu glmemperf is provided by glmemperf package.

glmemperf is:

This benchmark aims to measure the texture memory bandwidth performance of an OpenGL ES 2.0 implementation using a number of different texture storage formats and methods.

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

sudo apt-get -y install glmemperf

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

You can also use apt command to install glmemperf.

sudo apt -y install glmemperf

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

sudo aptitude install glmemperf

Summary

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