Menu

filesystem/

Find out the filesystem type

df -Th
· 28 Apr 2022

Get size of the subfolders

Use this command to print size of the subfolders:

du -sh *

If you want to exclude Permission denied errors, for example:

du -sh * 2>/dev/null
· 1 May 2017