Inodebased
Inodebased describes file systems whose core metadata model is centered on inodes, or index nodes. An inode is a structured record that stores a file’s attributes—type, permissions, ownership, timestamps, size—and pointers to the blocks that hold the file’s data. Inodebased file systems separate metadata from file content: a file is represented by an inode, while directories map file names to inode numbers.
Each file has a dedicated inode. Directory entries pair a file name with the inode number, enabling
Advantages of the inodebased approach include fast metadata access, stable file identification via inode numbers, and
Examples of inodebased file systems include Linux ext2, ext3, and ext4, and various UNIX-like systems such as
See also: inode, inode table, hard link, directory, ext4, UFS.