How to find most used directories in Linux
July 11th, 2024
No comments
This is very fast quickie. When you want to find which directories take most of the data on Linux use following command:
du -h -x -d 2 / | grep G
You can change “/” to corresponding directory you are interested in.
Have a nice day,
Recent Comments