Re: File system full

2004-12-29 Thread David Heilman
Thanks everyone... There where a number of suggestion that worked very well. It 
turned out to be a
hidden file from a background task that I didn't know the customer had running.
Ferguson, Neale wrote:
du -x -h --max-depth=1 /
It will then show you the space used by 1st level of directories. Then drill 
down using the same command with a different argument. Take a look in /var/log. 
I find /var/log/sa fills things up quite quickly (which is why I usually put it 
on a device of its own).
-Original Message-
What is the fastest way to find out what is filling up disk space? I've been 
searching directories
manually and can see nothing that big. It was 70% now it is 100%.
--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390
--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: File system full

2004-12-28 Thread Ferguson, Neale
du -x -h --max-depth=1 /

It will then show you the space used by 1st level of directories. Then drill 
down using the same command with a different argument. Take a look in /var/log. 
I find /var/log/sa fills things up quite quickly (which is why I usually put it 
on a device of its own).

-Original Message-
What is the fastest way to find out what is filling up disk space? I've been 
searching directories
manually and can see nothing that big. It was 70% now it is 100%.

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: File system full

2004-12-28 Thread Tom Shilson
The find command can  be a  big help.  I also like " du -sk * ".  It lists
all files and directories and their size (including subdirectories.) It
*really* helps to know what your systems are like normally.

Logs are usually the problem unless something is in a loop.  Try " top " to
see what's running.

tom
- - - - - - - - - - - -
Toto, I have a feeling we're not in the mainframe world any more.
   _/)  Tom Shilson
~GEDW & VM System Services
Aloha   Tel:  651-733-7591   tshilson at mmm dot com
   Fax:  651-736-7689

Linux on 390 Port  wrote on 12/28/2004 05:02:02
PM:

> What is the fastest way to find out what is filling up disk space?
> I've been searching directories
> manually and can see nothing that big. It was 70% now it is 100%.
>
> TIA
> Dave

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: File system full

2004-12-28 Thread Peter E. Abresch Jr. - at Pepco
<><><>

Re: File system full

2004-12-28 Thread Michael Morgan
You can find files greater in size than a certain amount with the 'find'
command:
   find /some_dir -size +20k
will list all files in /some_dir and all of it's sub-directories having
a size greater than 200mb.
..thanks
David Heilman wrote:
What is the fastest way to find out what is filling up disk space?
I've been searching directories
manually and can see nothing that big. It was 70% now it is 100%.
TIA
Dave
--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390
or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390
--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: File system full

2004-12-28 Thread Adam Thornton
On Dec 28, 2004, at 5:02 PM, David Heilman wrote:
What is the fastest way to find out what is filling up disk space?
I've been searching directories
manually and can see nothing that big. It was 70% now it is 100%.
Probably /var/log.
--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390