Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Kindly tell me the difference between In-core inode list and disk inode list with reference to Unix File System.

Also, kindly direct me to the links where i can get more info on this.

Thanks,LinuxPenseur

share|improve this question

closed as off topic by Cairnarvon, Shawn Chin, fotanus, guido, WATTO Studios May 28 at 12:13

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

4 Answers

up vote 0 down vote accepted

From http://www.cs.iastate.edu/~cs554/NOTES/RPC/UNIXfilesystem.pdf (3rd page):

• on-disk inode refers to inode stored in disk within the inode list

• in-core inode refers to inode stored in memory when a file is open

share|improve this answer
1  
The link is dead – DarkCthulhu Nov 23 '12 at 15:27

The inode is a data structure that describes a file. The inode is actually a structure on filesystem. To open a file, the kernel copies the inode into memory. As the file changes, the in-core inode is updated usually more often than the on-disk copy. And the in-core inode has a few extra fields that are only needed while the file is opened. This over-simplifies things a little bit, but I think it's enough for now. ----lok!------

share|improve this answer

Basically the question has been answered. I would like to add in some of my views.

In - core inode refers to inode which is present in the main memory.The kernel uses it whenever a process wants to manipulate a file in the secondary memory.It is a dynamic entity.

On- disk inode is a static entity & is present only in the Secondary memory.

HTH

share|improve this answer

" Difference between in-core Inode and disk Inode

The inode is a data structure that describes everything about a file other than their name. When a file is opened then the kernel copies the inode into memory. As the file changes, the in-core inode is updated usually more often than the on-disk copy. And the in-core inode has a few extra fields that are only needed while the file is opened.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.