evemu-record command not found

In this troubleshooting guide we learn how to fix evemu-record command not found error message

Introduction

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

evemu-record: command not found

or when using sudo you get the following error message

sudo: evemu-record: command not found

Solutions to evemu-record: command not found

How To Fix evemu-record: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu evemu-record is provided by evemu-tools package.

evemu-tools is:

The evemu library and tools are used to describe devices, record data, create emulation devices and replay data from kernel evdev (input event) devices.

This package provides test tools for the evemu library.

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

sudo apt-get -y install evemu-tools

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

You can also use apt command to install evemu-tools.

sudo apt -y install evemu-tools

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

sudo aptitude install evemu-tools

Summary

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