Linux: Find Directory Size Easily

Need to check the size of a directory in Linux? Use the du command:
bash
CopyEdit
du -sh /path/to/directory
* -s → Shows the total size
* -h → Displays in human-readable format
For a breakdown of subdirectory sizes, run:
bash
CopyEdit
du -h /path/to/directory | sort -h
This helps manage disk space efficiently and keep your system optimized!
https://rdpextra.com/streaming-rdp/
#linux #finddirectorysize #diskusage #sysadmin #rdpextra

image