Linux - Disk investigation
Jump to navigation
Jump to search
Check what files and folders are using up filesystem
$ sudo du -sh /*
What device is a mount point 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