Why Your Docker Container Ignores Ctrl+C
PID 1 doesn't receive signals by default. Learn why Ctrl+C fails in containers and fix it with tini or exec form CMD.
All the articles with the tag "linux".
PID 1 doesn't receive signals by default. Learn why Ctrl+C fails in containers and fix it with tini or exec form CMD.
daemon.json controls how the Docker daemon behaves — logging drivers, storage drivers, registry mirrors, and the options worth tuning.
Write bash scripts that don't silently fail — set -euo pipefail, error handling, input validation, and logging patterns for production scripts.
Discord tracks what you're running. Here's how to turn off activity status, game detection, and telemetry so your app habits stay private.
btmp logs failed logins and grows forever on internet-facing servers. Set up logrotate to keep it under control before your disk fills up.
Intel 13th and 14th gen CPUs have a documented instability problem. Here's what's happening, who's affected, and what Intel is doing about it.
By default bash history is lost across multiple terminal sessions. Fix it with HISTAPPEND and PROMPT_COMMAND so nothing gets overwritten.
Something's squatting on port 8080 and you need to know what. ss, lsof, and fuser one-liners to find and kill the culprit fast.
nohup, disown, and & all keep processes running after logout — but they work differently. Here's which one to reach for and why.
What is lost+found and why does it exist? fsck puts recovered file fragments there after a crash — and no, you can't delete it.
echo is convenient but inconsistent across systems; printf is portable and precise — know when to use each and avoid the gotchas.
grep is more powerful than you think — regex patterns, context flags, recursive search, and piping tricks that save hours of log digging.