Run the following command to find out the top biggest directories under /home partition.
du -a /home | sort -n -r | head -n 5
To display the largest folders/files including the sub-directories, run:
du -Sh | sort -rh | head -5
Run the following command to find out the top biggest directories under /home partition.
du -a /home | sort -n -r | head -n 5
To display the largest folders/files including the sub-directories, run:
du -Sh | sort -rh | head -5