Desk Space Debugging
Check Disk Space
df -hCheck for Large Files or Directories
sudo du -h / | grep '^[0-9\.]\+G'Check directory sizes inside a specific path
sudo du -h --max-depth=1 /home/username/documentscheck file sizes and sort by size
sudo du -h --max-depth=1 /home/username/documents | sort -hRemoving a directory and it's content
rm -r /path/to/directoryLast updated