Skip to content
Linux

Linux posts

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

LinuxFix July 11, 2026 5 min read

Fixing a Corrupted ext4 or XFS Filesystem with fsck

The correct order of operations for repairing a corrupted Linux filesystem, why running fsck on a mounted filesystem is dangerous, and what to do when the repair tool itself reports it can't fix something automatically.

#ext4#xfs#fsck
Read more
LinuxFix July 11, 2026 5 min read

Diagnosing and Fixing Kernel Oops Messages in dmesg

The difference between an oops and a full panic, how to read the call trace in an oops message well enough to identify the responsible driver, and when an oops is safe to ignore versus a sign of real trouble ahead.

#kernel#dmesg#debugging
Read more
LinuxFix July 11, 2026 2 min read

Fixing SELinux Denials Blocking a Legitimate Service

A service that works fine with SELinux disabled fails mysteriously with it enforcing. Here's how to read audit.log, generate a targeted policy module, and fix the actual denial instead of disabling protection.

#fix#selinux#security
Read more
LinuxFix July 11, 2026 2 min read

Fixing 'start-limit-hit' Errors in systemd

A service refuses to start at all, and systemctl reports start-limit-hit — this is systemd's own crash-loop protection, and it requires clearing the rate limit as a distinct step after fixing the real cause.

#fix#systemd#services
Read more