🎁 New User? Get 20% off your first purchase with code NEWUSER20 Register Now →
Menu

Categories

Linux Advanced

What is Inode?

A data structure in Unix filesystems that stores metadata about a file, excluding its name and data.

An inode contains information about a file including its size, ownership, permissions, timestamps, and pointers to the data blocks. Each file has a unique inode number within its filesystem.

The inode does not store the filename — that mapping is maintained in directory entries. This is why hard links work: multiple directory entries can point to the same inode.

Related Terms

Crontab Syntax
The time specification format used in cron job scheduling, with five fields defining minute, hour, day of month, month, and day of week.
Namespace
A Linux kernel feature that provides process isolation by creating separate instances of global system resources.
RAID
Redundant Array of Independent Disks — a technology combining multiple physical drives into a single unit for performance, redundancy, or both.
Bash Script
A text file containing a series of shell commands that are executed sequentially by the Bash interpreter.
Journald
The systemd journal daemon that collects and stores log data from services, the kernel, and boot messages in a structured binary format.
Sed
A stream editor for filtering and transforming text, commonly used for find-and-replace operations in files.
View All Linux Terms →