1834435 Members
2030 Online
110067 Solutions
New Discussion

disk space usage

 
SOLVED
Go to solution
Ron Irving
Trusted Contributor

disk space usage

I performed the monthly backup and reboot recently, with no obvious problems, save one. All of a sudden, bdf reports /dev/vg00/lvol3 running at 99%. Before the reboot, it was at 40%. Maybe I'm panicking, but is this not cause for alarm?? lvol3 is mounted to /.

Please let me know

Ron the worry-wort
Should have been an astronaut.
4 REPLIES 4
James R. Ferguson
Acclaimed Contributor
Solution

Re: disk space usage

Hi Ron:

Sounds like you inadvertantly created a regular file in /dev. Look for things that don't belong there (principally non-special files). I'd expect to see something like "/dev/rmt/om" where you mistakenly typed the letter "o" instead of the number "0".

...JRF...
Bill McNAMARA_1
Honored Contributor

Re: disk space usage

You probably have a core file somewhere.
Using a simple find construct you can search for large files and examine whether you want them or njot.

To avoid core disk space problems retune the kernel and/or
ln -s /dev/null core
although you'll loose on why did it core dump analysis.

Later,
Bill
It works for me (tm)
Christian Schulze
Regular Advisor

Re: disk space usage

Try
find / -xdev -type f -print | xargs ls -l | sort -rn -k5 | more

this will list all your files by size ...

maybe then you can identify a huge core or /dev/rmo file as mentioned above

Christian
never touch a running system
Patrick Paton
Occasional Advisor

Re: disk space usage

Make sure all of your file systems are mounted. Writing data to a mount point can cause the root file system to fill up rather quickly.