due command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
due: command not found
or when using sudo you get the following error message
sudo: due: command not found
Solutions to due: command not found
How To Fix due: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu due is provided by due package.
due is:
DUE uses templates to generate target specific build images based on any version or architecture of any Debian release, and provides a launcher application to reduce complexity and let the developer ‘just build it’, whatever ‘it’ may happen to be.
To fix this problem, we can install more using the command below.
sudo apt-get -y install due
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install due.
sudo apt -y install due
Or if you have aptitude installed you can use the following command.
sudo aptitude install due
Summary
In this tutorial we learn how to fix due command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.