duende command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
duende: command not found
or when using sudo you get the following error message
sudo: duende: command not found
Solutions to duende: command not found
How To Fix duende: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu duende is provided by duende package.
duende is:
The duende program starts a child process as specified on the command line and handles some aspects of maintaining it as a daemon process. In particular it passes the standard output and error from the child process to syslog. If the child process exits with a configurable exit status it will be restarted. Optionally duende will provide a pid file, and other features are configurable.
To fix this problem, we can install more using the command below.
sudo apt-get -y install duende
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install duende.
sudo apt -y install duende
Or if you have aptitude installed you can use the following command.
sudo aptitude install duende
Summary
In this tutorial we learn how to fix duende command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.