How to check the storage details of WSL
Run the below command to view the WSL Storage details
# Show disk usage of root filesystem
df -h /
# Show usage of all mounted filesystems
df -h
# Check disk usage of home directory
du -sh ~
Output is like below
Comments
Post a Comment