Tag

Loop Device

1 views collected around this technical thread.

OPPO Kernel Craftsman
OPPO Kernel Craftsman
Oct 22, 2021 · Fundamentals

Understanding Linux Loop Device: Mechanism, Usage, and Implementation Details

The Linux loop device creates a virtual block device from a regular file, allowing the file’s filesystem to be mounted like a real disk; using losetup or ioctl you can attach, configure (including encryption or direct I/O), and the kernel forwards I/O through a concise, high‑performance stack ensuring compatibility and extensibility.

Block DeviceIO ForwardingKernel
0 likes · 7 min read
Understanding Linux Loop Device: Mechanism, Usage, and Implementation Details
Architects' Tech Alliance
Architects' Tech Alliance
Apr 11, 2020 · Fundamentals

Understanding Linux File System Architecture and Mounting Process

This article explains the layered architecture of Linux file systems, how generic API calls like read operate across different storage media, demonstrates creating and mounting loop‑back file systems with dd, losetup, mke2fs and mount commands, and details the core VFS structures such as superblock, inode, dentry and buffer cache.

InodeLoop DeviceVFS
0 likes · 12 min read
Understanding Linux File System Architecture and Mounting Process