[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [cobalt-users] Var Partition



-----Original Message-----
From: Richard Sidlin [mailto:richard@xxxxxxxxxxxxxxxxxx]
Sent: Tuesday, June 24, 2003 2:22 PM
To: Cobalt-Users
Subject: [cobalt-users] Var Partition


I am getting persistent messages about the above partition filling up.
I'm up to 95%. Which command can I use to show what is in what directory
in that partition rather than keep cd'ing into each directory.

TIA



Richard Sidlin
_____________________________________


Many :)

cd /var
find .
or
ls -R -l
or
du -h

I am sure there are more.  You may want to pipe any of those commands to
"less" or "more" so you can pause the output.  "less" allows you to scroll,
"more" just does page by page.

ie:

find . | less
or
find . | more

Thanks,
Brian