PROGRAMS

du (disk usage)

Article by:
Date Published:
Last Modified:

Overview

du (disk usage) is a UNIX-based command-line program that is used for displaying estimated file space usage. It can recursively iterate through directories, listing the total space used by that directory and it’s contents. Note that the common ls command cannot do this, and will only display the space used by the directory and not it’s contents (typically around 4kB for a directory).

Typical Usage

To produce a human-readable summary of the sizes of files/directories in the current working directory, use:

1
$ du -sh *

This may take some time, as the command has to traverse the directory structure and count up all the file sizes.

Excluding Other File Systems

You might want to run du to find out what directories/files are taking up the most space on a specific hard drive (or more correctly, a specific file system). When doing so, you want to exclude all mount points that belong to a different file system. You can use the -x option to ignore all files/directories that are on a different file system to the one which the first directory/file belonged to.

For example, to find out what files and directories are consuming the most space on your root-level device, use the following command:

1
$ du -shx /*

Authors

Geoffrey Hunter

Dude making stuff.

Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License .

Related Content:

Tags

comments powered by Disqus