Here's a quick command to find out what folder is consuming the most space on Linux. This will also sort the results to show the most space-consuming folders at the bottom:
du -sh * | sort -h
Run this in the current directory to find the most consuming subdirectory.
No comments:
Post a Comment