- The files stored on a disk partition are organised into a filesystem
- There are several filesystem types; the common Linux one is called
ext4
- A filesystem contains a fixed number of inodes
- An inode is the data structure that describes a file on disk
- It contains information about the file, including its type (file/directory/device), modification time, permissions, etc.
- A file name refers to an inode, not to the file directly
- This allows hard links: many file names referring to the same inode