Skip to content
Linux

Linux posts

The kernel primitives, init systems, and tooling behind the world's most-deployed OS.

LinuxHow-To July 11, 2026 4 min read

Setting Up Bind Mounts and Overlay Filesystems

Using bind mounts to expose the same directory at multiple paths, and OverlayFS to layer a writable surface on top of read-only content — the two mechanisms containers are built on, directly usable on their own.

#mount#overlayfs#filesystems
Read more
LinuxHow-To July 11, 2026 4 min read

Tracing System Calls and Kernel Events with bpftrace

Using bpftrace's high-level scripting language to observe live kernel behavior — syscalls, function calls, scheduler events — with far less overhead and more flexibility than traditional tracing tools.

#ebpf#bpftrace#tracing
Read more
LinuxHow-To July 11, 2026 4 min read

Building an Isolated Network Namespace for Testing

Creating a separate network stack on the same Linux machine to test firewall rules, routing configurations, or networked software without touching the host's real network configuration.

#namespaces#networking#iproute2
Read more
LinuxHow-To July 11, 2026 2 min read

How to Use systemd-nspawn Containers on Linux

A complete walkthrough creating and running a lightweight systemd-nspawn container — useful for isolated testing environments without the overhead of a full container runtime.

#howto#systemd-nspawn#containers
Read more