efl_debugd command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
efl_debugd: command not found
or when using sudo you get the following error message
sudo: efl_debugd: command not found
Solutions to efl_debugd: command not found
How To Fix efl_debugd: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu efl_debugd is provided by libeina-bin package.
libeina-bin is:
The Eina library is a library which implements an API for data types in an efficient way. It also provides some useful tools like opening shared libraries, error management, type conversion, time accounting and memory pools.
Please refer to the documentation for a list of included data types and tools.
This is part of the Enlightenment Foundation Libraries (EFL).
This package contains some additional tools that may be useful for debugging eina issues.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libeina-bin
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libeina-bin.
sudo apt -y install libeina-bin
Or if you have aptitude installed you can use the following command.
sudo aptitude install libeina-bin
Summary
In this tutorial we learn how to fix efl_debugd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.