Check Directory/dir/file Size In Linux
DZone 's Guide to
Check Directory/dir/file Size In Linux
Join the DZone community and get the full member experience.
Join For Free
#check partition sizes
df -h
#check directory size
du -s -h /var/log/
#check every directory and file sizes under a dir.
du -s -h /var/log/*
#check individual size size
du -s -h /var/log/lastlog
Topics:
Opinions expressed by DZone contributors are their own.
{{ parent.title || parent.header.title}}
{{ parent.tldr }}
{{ parent.linkDescription }}
{{ parent.urlSource.name }}