Linux Filesystem: Directory Entries, Inodes, Data Blocks

An inode is a unique number assigned to each Linux file and directory in a filesystem (except for hard links), it is used as an index (Index Node). Inodes store metadata (attributes) about the files they refer to (it is like the “file’s identity card” without the name)ANDBecause the data of a file is actually …

Linux Disk Space: ext filesystem reserved blocks

With an ext filesystem 5% of disk space is by default reserved for privileged processes/root user. This allows the system to keep functioning even if non-privileged users fill up all the space available to them.Important tasks and system processes will still be able to work and write to the drive. NEVER set it to 0 …