kbdd command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
kbdd: command not found
or when using sudo you get the following error message
sudo: kbdd: command not found
Solutions to kbdd: command not found
How To Fix kbdd: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu kbdd is provided by kbdd package.
kbdd is:
KBDD stands for keyboard daemon. It is a simple keyboard layout switching program, which is designed to run in an X11 session and remember keyboard layouts on a per-window basis. That can be very handy for a user of a non-US keyboard who does not want to jump through layouts back and forth while typing in terminals (mostly in latin) and some kind of chat (in native language). Another useful thing about KBDD is its D-Bus notification support — it can emit signals on layout change, thus, making it possible to create layout indicator widgets in such window managers as awesome, for example.
Users of popular desktop environments such as GNOME or KDE most likely do not need this package, as a similar functionality should be already available within their environment. This package may be of interest, however, for the users of tiling or dynamic window managers such as dwm or awesome.
To fix this problem, we can install more using the command below.
sudo apt-get -y install kbdd
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install kbdd.
sudo apt -y install kbdd
Or if you have aptitude installed you can use the following command.
sudo aptitude install kbdd
Summary
In this tutorial we learn how to fix kbdd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.