dfrs command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
dfrs: command not found
or when using sudo you get the following error message
sudo: dfrs: command not found
Solutions to dfrs: command not found
How To Fix dfrs: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu dfrs is provided by dfrs package.
dfrs is:
dfrs displays the amount of disk space available on the file system containing each file name argument. If no file name is given, the space available on all currently mounted file systems is shown.
dfrs(1) is a tool similar to df(1) except that it is able to show a graph along with the data and is able to use colors.
Without any argument, size is displayed in human-readable format.
To fix this problem, we can install more using the command below.
sudo apt-get -y install dfrs
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install dfrs.
sudo apt -y install dfrs
Or if you have aptitude installed you can use the following command.
sudo aptitude install dfrs
Summary
In this tutorial we learn how to fix dfrs command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.