Skip to content

Instantly share code, notes, and snippets.

@zoonderkins
Last active January 3, 2019 08:52
Show Gist options
  • Save zoonderkins/73f3c9928cb820fff3ad1b28a512b8a2 to your computer and use it in GitHub Desktop.
Save zoonderkins/73f3c9928cb820fff3ad1b28a512b8a2 to your computer and use it in GitHub Desktop.
Linux view disk usage #linux

Some useful utils

# ncdu
apt install ncdu

ncdu -x /

# Native Command Line Tools
# -h human readable
df /
df -h

# displays the size of each TXT file in the current directory in human-readable format.
du -shc *.txt
 
# Xdiskusage 
apt install xdiskusage

# duc
apt install duc
# step1 bulding index
duc index /

# console ouput
duc ui /
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment