dma command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
dma: command not found
or when using sudo you get the following error message
sudo: dma: command not found
Solutions to dma: command not found
How To Fix dma: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu dma is provided by dma package.
dma is:
The DragonFly Mail Agent is a small Mail Transport Agent (MTA), designed for home and office use. It accepts mails from local Mail User Agents (MUA) and delivers them either to local mailboxes or remote SMTP servers. Remote delivery includes support for features such as TLS/SSL and SMTP authentication.
dma is not intended as a replacement for full-featured MTAs like Sendmail, Postfix, or Exim. Consequently, dma does not listen on port 25 for incoming connections.
To fix this problem, we can install more using the command below.
sudo apt-get -y install dma
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install dma.
sudo apt -y install dma
Or if you have aptitude installed you can use the following command.
sudo aptitude install dma
Summary
In this tutorial we learn how to fix dma command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.