keylaunch command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
keylaunch: command not found
or when using sudo you get the following error message
sudo: keylaunch: command not found
Solutions to keylaunch: command not found
How To Fix keylaunch: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu keylaunch is provided by keylaunch package.
keylaunch is:
KeyLaunch is a small utility for binding commands to a hot key. It reads a configuration file in .keylaunchrc. KeyLaunch uses Ctrl, Alt and Shift as modifier keys, the hotkey is up to the user.
To fix this problem, we can install more using the command below.
sudo apt-get -y install keylaunch
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install keylaunch.
sudo apt -y install keylaunch
Or if you have aptitude installed you can use the following command.
sudo aptitude install keylaunch
Summary
In this tutorial we learn how to fix keylaunch command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.