agedu command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
agedu: command not found
or when using sudo you get the following error message
sudo: agedu: command not found
Solutions to agedu: command not found
How To Fix agedu: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu agedu is provided by agedu package.
agedu is:
Unix provides the standard du utility, which scans your disk and tells you which directories contain the largest amounts of data. That can help you narrow your search to the things most worth deleting.
However, that only tells you what’s big. What you really want to know is what’s too big. By itself, du won’t let you distinguish between data that’s big because you’re doing something that needs it to be big, and data that’s big because you unpacked it once and forgot about it.
To make this difference, agedu relies on the atime of the files.
To fix this problem, we can install more using the command below.
sudo apt-get -y install agedu
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install agedu.
sudo apt -y install agedu
Or if you have aptitude installed you can use the following command.
sudo aptitude install agedu
Summary
In this tutorial we learn how to fix agedu command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.