1753492 Members
4749 Online
108794 Solutions
New Discussion юеВ

Re: Root FS getting full

 
SOLVED
Go to solution
Rkumar
Frequent Advisor

Re: Root FS getting full

Dear expets,

Thanks to all of you to give u r suggestions on this. expecting same response in future.
rahul
bullz
Super Advisor

Re: Root FS getting full

Best way.

cd /
du -akx | sort -nr | more

will list the list of huge files on top.
Michael Steele_2
Honored Contributor

Re: Root FS getting full

Hi

/etc/opt/resmon/logs/*

These are the only log files that I know of under / root, and they are apart of the EMS diagnostics. You should be able to trim the tops and remove the OLD logs.

du -sk / | sort -rn | more

Du will list biggest files

quot /

Quot will subtotal files by owners

cd /
touch filename
find . -newer filename

-newer will find runaway processes

find / -size +10000000c -xdev -exec ll {} \;

-size will find files > +10000000c
Support Fatherhood - Stop Family Law
Rkumar
Frequent Advisor

Re: Root FS getting full

Thanks to All,