Linux - Disk investigation
Check what files and folders are using up filesystem
$ sudo du -sh /*
What mount / partition a file or folder is on
$ sudo df -P '''/mount/point''' | tail -1 | cut -d' ' -f 1
$ sudo du -sh /*
$ sudo df -P '''/mount/point''' | tail -1 | cut -d' ' -f 1