By Bobby Iliev
When troubleshooting any disk space problems on a server or just trying to find the largest directories, the du
command is essential!
You can use the du
command which estimates the directory space usage.
For example, let’s say that we want to check the size of the directories located in the /home
directory. To do that let’s first cd
into the /home
folder:
- cd /home/
And then run the du
command:
- du -h --max-depth=1
[secondary_label Output]
16K ./demo
5.0G ./bobby
28K ./sammy
1.8G ./dev
7.1G .
I like running the du
command with the --max-depth=1
argument which only shows the size of the folders located inside the current directory and not the subfolders.
As you can see from the output the size is not sorted by size, here is how to do that!
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Accepted Answer
What you could usually do in order to sort values in Linux is to use the sort
command.
However, if you pipe the output of the du -h
command directly into sort, it will not take into consideration the human-readable size format.
Lukily sort
comes with a -h
argument as well which would take the human-readable format into consideration and will compare the human-readable numbers.
So the full command would look like this:
- du -h --max-depth=1 | sort -h
For more information you can take a look at the official documentation here:
https://linux.die.net/man/1/sort
Hope that this helps! Regards, Bobby
Heya,
There is also a ncurses
interface for du
, appropriately called ncdu
, that you can install:
- sudo apt install ncdu
This will graphically represent your disk usage:
- ncdu
Output--- /root ----------------------------------------------------------------------
8.0KiB [##########] /.ssh
4.0KiB [##### ] /.cache
4.0KiB [##### ] .bashrc
4.0KiB [##### ] .profile
4.0KiB [##### ] .bash_history
You can step through the filesystem by using the up and down arrows and pressing Enter on any directory entry.
Hope that this helps!
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.