Operating System - HP-UX
1834017 Members
2307 Online
110063 Solutions
New Discussion

"/" root filesystem is 100%

 
SOLVED
Go to solution
sheevm
Regular Advisor

"/" root filesystem is 100%

Hi,

Can someone help me with the command to locate the largest directory in the "/".

I appreicate your quick response. People are screaming

Thanks
Rajim
be good and do good
7 REPLIES 7
James R. Ferguson
Acclaimed Contributor
Solution

Re: "/" root filesystem is 100%

Hi:

You are correct in thinking to look for the largest directory:

# du -xk /|sort -k1nr

Regards!

...JRF...
siva0123
Trusted Contributor

Re: "/" root filesystem is 100%

Rajim,

du -kx / | sort -rn


will help you.



But why root getting filled.


Thanks,
Siva
Ludovic Derlyn
Esteemed Contributor

Re: "/" root filesystem is 100%

hi,

try du -sk *
Check if cores files are present

find / -nalme core

Regards

L-DERLYN
V.Manoharan
Valued Contributor

Re: "/" root filesystem is 100%

#du -sk *
Ludovic Derlyn
Esteemed Contributor

Re: "/" root filesystem is 100%

sorry,

find / -name core
Paul Sperry
Honored Contributor

Re: "/" root filesystem is 100%

cd /
du -sk *
sheevm
Regular Advisor

Re: "/" root filesystem is 100%

Thanks to all of you who responded.

The problem got resolved.

Rajim
be good and do good