dfc command not found

In this troubleshooting guide we learn how to fix dfc command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

dfc: command not found

or when using sudo you get the following error message

sudo: dfc: command not found

Solutions to dfc: command not found

How To Fix dfc: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu dfc is provided by dfc package.

dfc is:

dfc displays file system space usage using graphs and colors. In some ways, it is a modernized version of df as it is able to use colors, draw graphs and export its output to different formats such as CSV or HTML.

To fix this problem, we can install more using the command below.

sudo apt-get -y install dfc

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install dfc.

sudo apt -y install dfc

Or if you have aptitude installed you can use the following command.

sudo aptitude install dfc

Summary

In this tutorial we learn how to fix dfc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.