Skip to content

tag

#debugging

8 posts

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
Shell & TerminalHow-To July 11, 2026 3 min read

How to Debug Shell Scripts With set -x and ShellCheck

A complete walkthrough of the two genuinely essential shell scripting debugging tools — one that traces exactly what a script actually executes, and one that catches whole categories of bugs before the script ever runs.

#howto#debugging#shellcheck
Read more
LinuxHow-To July 9, 2026 3 min read

How to Debug a Program on Linux with strace

A complete walkthrough using strace to see exactly which system calls a misbehaving program is making — often the fastest way to diagnose a problem with no useful log output at all.

#howto#strace#debugging
Read more