Use Gdu For A Faster Disk Usage Checking in Linux Terminal - It's FOSS
Use Gdu For A Faster Disk Usage Checking in Linux Terminal - It's FOSS
There are two popular ways to check disk usage in Linux terminal (https://linuxhandbook.com/df-
command/): du command and df command. The du command is more for checking the space used
by a directory (https://linuxhandbook.com/find-directory-size-du-command/) and the df command
gives you the disk utilization on filesystem level.
There are more friendly ways to see the disk usage in Linux with graphical tools like GNOME Disks
(https://itsfoss.com/check-free-disk-space-linux/). If you are confined to the terminal, you can use a
TUI (https://itsfoss.com/gui-cli-tui/) tool like ncdu (https://dev.yorhel.nl/ncdu) to get the disk usage
information with a sort of graphical touch.
If you use the gdu command without any options, it shows the disk usage for the current directory
you are in.
Since it has terminal user interface (TUI), you can navigate through directories and disk using arrows.
You can also sort the result by file names or size.
You’ll notice some symbols before some file entries. Those have specific meaning.
! means an error occurred while reading the directory.
. means an error occurred while reading a subdirectory, size may not be correct.
@ means file is a symlink or socket.
H means the file was already counted (hard link).
e means directory is empty.
To see the disk utilization and free space for all mounted disks, use the option d :
gdu -d
It is included in the universe repository of the upcoming Ubuntu 21.04 but chances are that you are
not using it at present. In that case, you may install it using Snap through it may seem like a lot of
snap commands:
I am more used to of using du and df commands but I can see some Linux users might like gdu. Are
you one of them?