View Single Post
Old 7th July 2008
phoenix's Avatar
phoenix phoenix is offline
Risen from the ashes
 
Join Date: May 2008
Posts: 696
Default

How to find where all your disk space went:
Code:
# cd /
# du -d 1 | sort -n
<check output for the largest hog>
# cd /<largest hog>
# ls -l
<check if anything jumps out>
# du -d 1 | sort -n
Repeat until you find where all the space went.
__________________
Freddie

Help for FreeBSD: Handbook, FAQ, man pages, mailing lists.
Reply With Quote