dundee command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
dundee: command not found
or when using sudo you get the following error message
sudo: dundee: command not found
Solutions to dundee: command not found
How To Fix dundee: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu dundee is provided by ofono package.
ofono is:
oFono is a stack for mobile telephony devices on Linux. oFono supports speaking to telephony devices through specific drivers, or with generic AT commands.
oFono also includes a low-level plug-in API for integrating with other telephony stacks, cellular modems and storage back-ends. The plug-in API functionality is modeled on public standards, in particular 3GPP TS 27.007 “AT command set for User Equipment (UE).”
This package includes the core daemon.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ofono
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ofono.
sudo apt -y install ofono
Or if you have aptitude installed you can use the following command.
sudo aptitude install ofono
Summary
In this tutorial we learn how to fix dundee command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.