fix: typo handle to handled (#7686)

From handle to handled, I believe this is grammatically correct.
pull/7692/head
duds 2 weeks ago committed by GitHub
parent 8fe9669fd4
commit a0addd1408
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      src/data/roadmaps/linux/content/110-disks-filesystems/100-inodes.md

@ -4,11 +4,11 @@ In a Linux filesystem, an inode (index node) is a core concept that represents a
Every file or directory in a Linux filesystem has a unique inode, and each inode is identified by an inode number within its own filesystem. This inode number provides a way of tracking each file, acting as a unique identifier for the Linux operating system.
Whenever a file is created in Linux, it is automatically assigned an inode that stores its metadata. The structure and storage of inodes are handle by the filesystem, which means the kind and amount of metadata in an inode can differ between filesystems.
Whenever a file is created in Linux, it is automatically assigned an inode that stores its metadata. The structure and storage of inodes are handled by the filesystem, which means the kind and amount of metadata in an inode can differ between filesystems.
Although you would not interact with inodes directly in everyday usage, understanding inodes can be very helpful when dealing with advanced file operations, such as creating links or recovering deleted files.
```bash
# Retrieve the inode of a file
ls -i filename
```
```

Loading…
Cancel
Save