Too few inodes can result in you not being able to store anymore files. What is the the downside of having many inodes ? (more than default)
Asked
Active
Viewed 753 times
3
-
2The only downside I see is more space will be reserved for inodes and as a result the actual space on the disk will be reduced. – GMaster Mar 17 '15 at 02:49
-
By how much ? How does it work ? What does it look like ? – Kaizer Sozay Mar 17 '15 at 02:50
2 Answers
2
Inodes reserve space on the disk that cannot be used for storing your data. That is about the only issue.

mdpc
- 6,834
1
Any operation that scans the inode table will be slower. This can affect fsck or other recovery functions. Also, when the inode table is cached this can take up memory. This answer may also provide insight

Sonicthoughts
- 119
-
3I believe that the only inodes that are cached in memory are those that are active (open, in the process of being exec'ed, somebody's working directory, a mount point, etc.). A larger number of inodes allocated in the filesystem on disk should not affect the usage of the in-memory inode table. – Scott - Слава Україні Mar 17 '15 at 04:22