Operating System - Linux
1830214 Members
1315 Online
109999 Solutions
New Discussion

Re: running out of inode ...

 
SOLVED
Go to solution
K.C. Chan
Trusted Contributor

running out of inode ...

Filesystem Inodes IUsed IFree IUse% Mounted on
/dev/hda4 7143424 7143424 0 100% /usr/local/lms

Filesystem 1K-blocks Used Available Use% Mounted on
/dev/hda4 27660732 181872 26051084 1% /usr/local/lms

as you can see, physical space is not an issue. This is on ext3 file system. Are there any file system which can allocate inode dynamically. Thanks.
Reputation of a thousand years can be determined by the conduct of an hour
3 REPLIES 3
Stuart Browne
Honored Contributor

Re: running out of inode ...

I have to ask..

How can you be using 7 *MILLION* inodes when your using less than 200MB of space?

What does the output of the command:

tune2fs -l /dev/hda4

have to say about the filesystem? When was the last time you ran an 'fsck' over the filesystem?
One long-haired git at your service...
Mark Grant
Honored Contributor
Solution

Re: running out of inode ...

To answer the specific question though,

resiserfs, jfs and xfs all have dynamic inode allocation. ext3 does not.

ext3 is pretty much just the venerable ext2 with a journal. I imagine that this is why ext3 needs a pre-allocated inode table.
Never preceed any demonstration with anything more predictive than "watch this"
K.C. Chan
Trusted Contributor

Re: running out of inode ...

Stuart,
thanks for your curiosity. I check with our developers. It turns out that they soft link files and never removed it after the process exit. But it is good to know about dynamic inode features on jfs,resizerfs, and xfs.

Thanks all for you input.
Reputation of a thousand years can be determined by the conduct of an hour