top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What are inodes in Linux ? How to find the inode associated with a file ?

+1 vote
295 views
What are inodes in Linux ? How to find the inode associated with a file ?
posted Jul 6, 2015 by Mohammed Hussain

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

inode is a unix concept which means index node and represent a file internally. In short it is a it is a file structure on a file system except the file contents and the file name and used to track the file(s) stored on the disk. The inode entries store metadata about each file, directory or object, but only points to these structures rather than storing the data.

Content of the inode structure -
Inode number
Access Control List (ACL)
Extended attribute
Direct/indirect disk blocks
Number of blocks
File access, change and modification time
File deletion time
File generation number
File size
File type
Group
Number of links
Owner
Permissions
Status flags

answer Jul 6, 2015 by Salil Agrawal
...