Dust: A Modern Tool to Display the Disk Usage in a Tree Hierarchy

Linux TLDR
Last Updated:
Reading time: 4 minutes

The β€œdu” utility is quite useful for estimating and summarizing file and directory usage. However, a new user may find it overwhelming, in which case they can turn to a new tool named Dust.

Dust (β€œdu” + β€œrust” = β€œdustβ€œ) gives a fresh look to the conventional β€œdu” output, representing files and directories in a tree-like structure and categorizing them based on disk usage.

You can take a quick sneak peek at the following picture of how Dust represents disk usage:

dust command output

If you look carefully, you will find that without using any additional options, it beautifully categorizes the files and directories in a tree hierarchy based on their directory structure and disk usage. It mentions the size of each directory next to it, along with a progress bar for graphical representation.

Note that this output shows the stats of the current working directory, where β€œ.cacheβ€œ, β€œ.cargoβ€œ, β€œ.localβ€œ, and β€œsnap” are parent directories, while β€œfirefox” and β€œcommon” are subdirectories of β€œsnapβ€œ.

The picture attached above shows the β€œdust” command output without any options, but you can use additional options to customize the output according to your preferences. For instance, you can specify the scan depth, number of lines to display, show or hide the absolute path, ignore directories, display or hide the file count, and much more.

So stick with this article till the end to find out how you can install Dust on your preferred Linux system with command-line usage.

Tutorial Details

DescriptionDust
Difficulty LevelLow
Root or Sudo PrivilegesNo
OS CompatibilityUbuntu, Manjaro, Fedora, etc.
Prerequisites–
Internet RequiredYes (for installation)

How to Install Dust on Linux

The Dust can be installed in many different ways, but the one I find easiest and personally recommend to everyone is via Cargo or Homebrew if it’s installed on your system.

If it’s installed, then great; otherwise, you can follow our separate article on it. Once you’re ready, open your terminal and execute one of the following commands to begin the installation.

$ cargo install du-dust

#OR

$ brew install dust

Once the installation is complete, you can verify it by checking its version.

$ dust --version

Output:

checking Dust version

How to Use Dust on Linux

Once the installation is complete, you can begin using Dust to check your disk usage. Here are all the possible ways to use Dust for estimating file and directory usage.

#Scan the current directory and return the result in a tree hierarchy.
$ dust

#Scan the root directory, which will take some time and might require root privilege.
$ dust /

#Scan the directory and return the results based on the specified options.
$ dust [options] [path]

The β€œdust” command output without any options is already attached at the beginning of this article. So I’ll directly begin explaining the usage of its various options to get your desired output.

Set the Scan Depth

The subdirectories shown in the result are limited to a certain number, but you can set a custom limit to the scan depth by using the β€œ-d” option.

$ dust -d 3

The above command will display the three levels of subdirectories.

set scan depth in dust

Limit the Number of Entries

In the previous example, where you specified the scan depth, the output was too large, requiring scrolling. To trim the output to a limited number of entries, you can use the β€œ-n” option.

$ dist -d 3 -n 20

The above command will only display the twenty entires in the output.

limit the directories to specific number

Print the Absolute Path of Entries

The default behavior of Dust is to print the relative path of files and directories (means their filename), which absolutely makes the output clean. However, if you want to check the absolute path of all listed entries, you can use the β€œ-p” option to do so.

$ dust -p

The above command will display the entries with their absolute path.

print the absolute path of entries in dust command output

Exclude Matching Result from the Entries

When issuing the β€œdust” command without any options, it will list the disk usage in a tree hierarchy for all the files and directories in the present directory. If you want to ignore certain files or directories, you can exclusively specify their name using the β€œ-X” option.

$ dust -X snap

The above command will remove all entries containing the β€œsnapβ€œ.

excluding certain entry from dust command output

Hide the Percent Bars

If the right-side percentage bar bothers you, you can easily remove it using the β€œ-b” option.

$ dust -b

The above command will hide the percentages.

hide the percent bars in dust command output

Print the Entries for Screen Reader

The screen reader mode can be enabled using the β€œ-R” option, although this option is typically used for screen readers. However, regular use of this option makes it easier for the user to find disk usage, as it lists all files and directories in one column, accompanied by counts of child directories, size, and disk usage percentage.

$ dust -R

The above command will enable screen reader mode.

enabling screen reader mode in dust

Reverse Sort the Entries

The entries in the β€œdust” command output are sorted from small to large size, but they can be reversed using the β€œ-r” flag to sort from large to small size, making it easier for you to find the largest file first.

$ dust -r

The above command will sort the entries with the largest file first.

reverse sort the dust command output

Ignore Hidden Files and Directories

The β€œdust” command output displays hidden files and directories (prefixed with β€œ.β€œ). This can be useful at times, but often you may prefer to skip them using the β€œ-i” option.

$ dust -i

The above command will ignore the hidden files and directories.

ignoring the hidden entries in dust command output

Here, I’ll end this article with the uninstallation step, but note that there are a lot more options you can use with Dust in combination with each other. To get the complete list of options, you can check its help section using the β€œdust --help” command.

How to Remove Dust from Linux

To remove dust from your Linux system, you can execute one of the following commands, depending on the command you used for installation.

$ cargo uninstall du-dust

#OR

$ brew uninstall dust

Final Word

Dust is a simple yet amazing tool for quickly finding disk usage. Although this command is user-friendly, for beginners, I would suggest first learning to use the β€œdu” command, then swifting to Dust.

Finally, if you know of any other tools like this, then let me know in the comment section, including your thoughts and opinions.

Till then, peace!

Join The Conversation

Users are always welcome to leave comments about the articles, whether they are questions, comments, constructive criticism, old information, or notices of typos. Please keep in mind that all comments are moderated according to our comment policy.