1833873 Members
3393 Online
110063 Solutions
New Discussion

Re: root directory

 
Sajjad Sahir
Honored Contributor

root directory

my root directory is more than 92% i deleted all core files and trimmed log files etc.. but still it is 92%,
4 REPLIES 4
Mridul Shrivastava
Honored Contributor

Re: root directory

Check for any other big files , you could use the following to find the ones:

find . -type f -xdev -size +10000000c -exec ll {} \;


If it shows none/many then decrease/increase a Zero to narrow down the search.
Time has a wonderful way of weeding out the trivial
Jeeshan
Honored Contributor

Re: root directory

how much space allocated in your root directory?
a warrior never quits
MarkSyder
Honored Contributor

Re: root directory

Is it growing? If not, don't worry about it. I've had a root directory at 90%+ for several years and it's never caused any problems because it doesn't grow.

Mark Syder (like the drink but spelt different)
The triumph of evil requires only that good men do nothing
Robert-Jan Goossens
Honored Contributor

Re: root directory

Hi,

Run below command post the output.

# du -kx / | sort -rn | more

Robert-Jan