This is an old revision of the document!
# du -sh /var/*
# df -h
Change directories permission:
$ find /path/to/base/dir -type d -exec chmod 755 {} +
Change files permission:
$ find /path/to/base/dir -type f -exec chmod 644 {} +
Owner:
$ chown owner_name * -R
Group:
$ chgrp group_name * -R