ibus-daemon command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ibus-daemon: command not found
or when using sudo you get the following error message
sudo: ibus-daemon: command not found
Solutions to ibus-daemon: command not found
How To Fix ibus-daemon: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ibus-daemon is provided by ibus package.
ibus is:
IBus is an Intelligent Input Bus. It is a new input framework for the Linux OS. It provides full featured and user friendly input method user interface. It also may help developers to develop input method easily.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ibus
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ibus.
sudo apt -y install ibus
Or if you have aptitude installed you can use the following command.
sudo aptitude install ibus
Summary
In this tutorial we learn how to fix ibus-daemon command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.