filelight command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
filelight: command not found
or when using sudo you get the following error message
sudo: filelight: command not found
Solutions to filelight: command not found
How To Fix filelight: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu filelight is provided by filelight package.
filelight is:
Filelight allows you to understand your disk usage by graphically representing your filesystem as a set of concentric, segmented rings.
It is like a pie-chart, but the segments nest, allowing you to see both which directories take up all your space, and which directories and files inside those directories are the real culprits.
To fix this problem, we can install more using the command below.
sudo apt-get -y install filelight
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install filelight.
sudo apt -y install filelight
Or if you have aptitude installed you can use the following command.
sudo aptitude install filelight
Summary
In this tutorial we learn how to fix filelight command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.