Linux tutorial - IT technology blog

How to Configure kdump on Linux: Collecting Kernel Crash Dumps and Analyzing Critical System Failures

kdump captures the entire state of RAM at the moment of a kernel panic — before the system has a chance to reboot. It is the only tool that allows sysadmins to investigate the root cause of a server crash when the logs record nothing. This guide covers installing and configuring kdump on RHEL/CentOS/Ubuntu, safely triggering a test crash, and analyzing vmcore files with the crash tool.
Linux tutorial - IT technology blog

Landlock LSM on Linux: Sandbox Applications Without Root Using Built-in Kernel Security

Landlock LSM is a security module built into the Linux kernel since version 5.13, allowing applications to restrict their own filesystem access without root privileges. This post shares real-world deployment experience on Ubuntu 22.04 in production over six months: Python examples using ctypes, wrapping binaries with landlockrun, and combining with systemd hardening.