Ken Wilson wrote: > Filesystem Size Used Avail Use% Mounted on > /dev/sdc1 25G 24G 0 100% /
Err, 24 out of 25 gig in / Since you have everything in different partitions you are only interested in what happens on /dev/sdc1, you might try: sudo find / -xdev -type f -printf "%15s %p\n" |sort -r | head -50 to find the 50 biggest files in /. The other possibility is that you have large amoungs of data in say /home, and then have another disk mounted otver the top. HTH, Erik -- ----------------------------------------------------------------- Erik de Castro Lopo ----------------------------------------------------------------- "If trees could scream, would we be so cavalier about cutting them down? We might, if they screamed all the time, for no good reason." -- Jack Handey -- SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/ Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html
