Re: Fw: [LINUX-390] File system full

2004-12-29 Thread Hall, Ken (IDS DCS PE)
We've noticed that under certain conditions, the "df" command will show a 
reiser filesystem still full even after files are deleted to make room.  The 
stats don't appear correctly until the filesystem is unmounted and remounted.

> -Original Message-
> From: Linux on 390 Port [mailto:[EMAIL PROTECTED] Behalf Of
> John Campbell
> Sent: Wednesday, December 29, 2004 1:42 PM
> To: LINUX-390@VM.MARIST.EDU
> Subject: [LINUX-390] Fw: [LINUX-390] File system full
> 
> 
>   It can be a real bear when someone deletes the file but 
> leaves the
> process that has it open running...
> 
>   See:  http://www.systemtoolbox.com/article.php?articles_id=15
> 
> 
> John R. Campbell, Speaker to Machines (GNUrd)  {813-356|697}-5322
> Adsumo ergo raptus sum
> MacOS X: Because making Unix user-friendly was easier than debugging
> Windows.
> Red Hat Certified Engineer (#803004680310286)
> IBM Certified: IBM AIX 4.3 System Administration, System Support
> 
> --
> 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
>


If you are not an intended recipient of this e-mail, please notify the sender, 
delete it and do not read, act upon, print, disclose, copy, retain or 
redistribute it. Click here for important additional terms relating to this 
e-mail. http://www.ml.com/email_terms/


--
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


Fw: [LINUX-390] File system full

2004-12-29 Thread John Campbell
  It can be a real bear when someone deletes the file but leaves the
process that has it open running...

  See:  http://www.systemtoolbox.com/article.php?articles_id=15


John R. Campbell, Speaker to Machines (GNUrd)  {813-356|697}-5322
Adsumo ergo raptus sum
MacOS X: Because making Unix user-friendly was easier than debugging
Windows.
Red Hat Certified Engineer (#803004680310286)
IBM Certified: IBM AIX 4.3 System Administration, System Support

--
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


Fw: [LINUX-390] File system full

2004-12-29 Thread John Campbell
  find /path -xdev -type f -ls | sort -n -r +6 | more -c


John R. Campbell, Speaker to Machines (GNUrd)  {813-356|697}-5322
Adsumo ergo raptus sum
MacOS X: Because making Unix user-friendly was easier than debugging
Windows.
Red Hat Certified Engineer (#803004680310286)
IBM Certified: IBM AIX 4.3 System Administration, System Support

--
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-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


File system full

2004-12-28 Thread David Heilman
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