
inode table
An inode table is a data structure used by filesystems to keep track of files stored on a computer. Each inode contains metadata about a file, such as its size, permissions, creation date, and pointers to where the file's data is stored on the disk. Think of it as a catalog entry for each file, helping the operating system locate and manage files efficiently. The inode itself doesn't hold the filename; instead, filenames are stored separately in directory entries that reference their inodes. This system allows for flexible and organized file management.