Skip to content

Commit

Permalink
fix: typo handle to handled (#7686)
Browse files Browse the repository at this point in the history
From handle to handled, I believe this is grammatically correct.
  • Loading branch information
xaviduds authored Nov 6, 2024
1 parent 8fe9669 commit a0addd1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
```

0 comments on commit a0addd1

Please sign in to comment.