gdmap command not found

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

Introduction

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

gdmap: command not found

or when using sudo you get the following error message

sudo: gdmap: command not found

Solutions to gdmap: command not found

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

In Ubuntu gdmap is provided by gdmap package.

gdmap is:

GdMap is a tool which allows you to visualize disk space. Ever wondered why your hard disk is full or what directory and files take up most of the space? With GdMap these questions can be answered quickly. To display directory structures cushion treemaps are used which visualize a complete folder or even the whole hard drive with one picture.

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

sudo apt-get -y install gdmap

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

You can also use apt command to install gdmap.

sudo apt -y install gdmap

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

sudo aptitude install gdmap

Summary

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