1850508 Members
2276 Online
104054 Solutions
New Discussion

root filesystem is full

 
SOLVED
Go to solution
sheevm
Regular Advisor

root filesystem is full

Hi,

Root filesystem is full in one of the server. Can someone tell me a way to track the large files created in the root filesystem to resolve this issue?

Thanks.
Rajim
be good and do good
2 REPLIES 2
spex
Honored Contributor
James R. Ferguson
Acclaimed Contributor

Re: root filesystem is full

Hi:

Look at where the space has been consumed -- largest to smallest directory usage, first:

# du -kx / | sort -k1nr | more

Most notably, look at '/dev/' for any non-special files. A common mistake is to create a file named '/dev/rmt/om' --- with the letter "o" instead of the number "0".

Regards!

...JRF...