(Linux) file system basics
Apr 26, 2021 12:00 · 58 words · 1 minute read
Different approaches for implementing a file system: https://gcallah.github.io/OperatingSystems/FileImplementation.html
The way Linux does it: Inodes, default implementation nowadays: ext4
(Blog post) How to find a file’s Inode in Linux
ls -li
:-i
flag reveals the file’s inode numberstat <FILE>
: View information about a file, incl. the inode numberstat -f <FILE>
: View information about a file’s file system
- You are in control
- My Favorite Shortcuts for VS Code
- Customizing my shell: From bash to zsh to fish
- JSON5: JSON with comments (and more!)
- jq: Analyzing JSON data on the command line
- Get Total Directory Size via Command Line
- Changing DNS server for Huawei LTE router
- Notes on Job & Career Development
- Adding full-text search to a static site (= no backend needed)
- Generating a random string on Linux & macOS