Saturday, August 27, 2011

How to check file size of directories in UNIX

#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 

No comments: