input-remapper-control command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
input-remapper-control: command not found
or when using sudo you get the following error message
sudo: input-remapper-control: command not found
Solutions to input-remapper-control: command not found
How To Fix input-remapper-control: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu input-remapper-control is provided by input-remapper-daemon package.
input-remapper-daemon is:
input-remapper allows users to map buttons on all input devices (keyboards, mice, gamepads…) in X11 and Wayland. It also supports combined buttons and programmable macros.
This package contains the service and udev configuration to automatically apply button mappings at boot and on device connection.
To fix this problem, we can install more using the command below.
sudo apt-get -y install input-remapper-daemon
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install input-remapper-daemon.
sudo apt -y install input-remapper-daemon
Or if you have aptitude installed you can use the following command.
sudo aptitude install input-remapper-daemon
Summary
In this tutorial we learn how to fix input-remapper-control command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.