Blog Archive

Tuesday, December 1, 2009

Check the amount of Space occupied by a Directory

Check the amount of disk space occupied by a directory
du -hs dirname

It may be useful to sort the subdirs by size:
du -k | sort -rn

To list files sorted by size
:
ls -Sl

To view of different directory
du -ah /path/to/dir
-a : all files
-h : human-readable form

0 comments:

Post a Comment

Followers