Ubuntu how to check var size

July 8, 2021 . 1 MIN READ

#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 

https://dzone.com/articles/check-directorydirfile-size

Leave a Reply

Your email address will not be published. Required fields are marked *