ubuntu check disk space code example

Example 1: check ubuntu disk space

# shows total, available, and used.
df / -h

Example 2: see total space available in shell

df -hx squashfs --total

Example 3: linux check used space in folder

du -h --max-depth=1

Example 4: ubuntu check whats taking space

du -cha --max-depth=1 / | grep -E "M|G"

Example 5: check disk space ubuntu from terminal

#report file system disk space usage
df -h
or
sudo du -sh ./*
or
du -h -s *
#check space with  path
df / -h
or 
df -h /

#check space with  type
df -Th