SUMMARY: / file system is full what can I delete?

From: Dave Martini 1 <martini_at_mrpeabody.llnl.gov>
Date: Fri Jun 11 2004 - 18:41:01 EDT
WoW I got tons or replies thank you everybody.
I was able to solve what was taking up all the space
under /.
There were two directories that someone created that 
had over 200mb of data in them. 

There were many suggestions on what commands to use.
This is the one that I used that pointed me to the problem.

du -dk / | sort -n > /tmp/rootspace
Thanks to Darren for this one.

Here are others that people suggested

find / -type f -mtime -1
du -sk /* | sort -n
du -hs * | sort
du -sk /*
find / -xdev -type f -mtime 0 -ls
find . -name core -ok rm -f '{}' ';'
find / -type f -size +5000000c -print

Dave Martini
_______________________________________________
sunmanagers mailing list
sunmanagers@sunmanagers.org
http://www.sunmanagers.org/mailman/listinfo/sunmanagers
Received on Fri Jun 11 18:40:55 2004

This archive was generated by hypermail 2.1.8 : Thu Mar 03 2016 - 06:43:34 EST