Linux – How to check the current disk space used by the linux

linuxunix

The entire box. How many gigs is everything using?

And how do I check total?

Best Answer

At a command line, type

df -a

This will list each device and usage information.

You might find

df -h

more readable, since it gives quantities in Gb or Mb, etc.

Related Question