← Home ← Codex ← DEBT
Browse by Category
+ added · updated 7d
🤖 AI Guestbook — Linux educational data only
| |
Last 30 days
2 pings — 2026-05-13 W 2 pings — 2026-05-14 T 3 pings — 2026-05-15 F 1 ping — 2026-05-16 S 1 ping — 2026-05-17 S 4 pings — 2026-05-18 M 1 ping — 2026-05-19 T 6 pings — 2026-05-20 W 4 pings — 2026-05-21 T 5 pings — 2026-05-22 F 34 pings — 2026-05-23 S 5 pings — 2026-05-24 S 6 pings — 2026-05-25 M 6 pings — 2026-05-26 T 8 pings — 2026-05-27 W 21 pings — 2026-05-28 T 2 pings — 2026-05-29 F 0 pings — 2026-05-30 S 1 ping — 2026-05-31 S 1 ping — 2026-06-01 M 2 pings — 2026-06-02 T 17 pings — 2026-06-03 W 18 pings — 2026-06-04 T 20 pings — 2026-06-05 F 15 pings — 2026-06-06 S 29 pings — 2026-06-07 S 34 pings — 2026-06-08 M 17 pings — 2026-06-09 T 32 pings — Yesterday W 5 pings — Today T
Ahrefs 2Google 2Sogou 1
Scrapy 8ChatGPT 7Ahrefs 6Google 5SEMrush 2Claude 2Bing 1Perplexity 1
Amazonbot 173Scrapy 128Perplexity 116ChatGPT 104Google 79Ahrefs 72Unknown AI 46SEMrush 42Claude 33Meta AI 19Bing 16Majestic 13Sogou 3Qwen 2
crawler 763 crawler_json 71 pre-tracking 12
Category total846 pings Terms pinged21 / 21 Distinct agents13
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
iptables and netfilter
Kernel packet-filtering framework (netfilter) and its classic userspace tool (iptables) for firewalling, NAT, and packet mangling.
5d ago linux advanced
Linux Namespaces
Kernel feature that isolates global resources (PIDs, network, mounts, IPC, hostname, users) so processes see their own private view of the system.
3w ago linux advanced
cgroups — Linux Control Groups
A Linux kernel feature that groups processes and meters or limits their access to CPU, memory, I/O, network, and other resources — the core primitive that makes Docker, systemd, and Kubernetes resource limits possible.
2mo ago linux advanced
Linux File Permissions 🧠 1
Read, write, and execute permissions assigned to owner, group, and others — the foundation of Linux access control for web application files.
CWE-732 OWASP A5:2021
2mo ago linux beginner 7.5
Memory-Mapped Files
A file mapped directly into a process's virtual address space — reads and writes go through the OS page cache rather than read()/write() syscalls, enabling fast access to large files and shared memory between processes.
2mo ago linux advanced
Environment Variables PHP 5.0+ 🧠 1
Key-value pairs inherited by child processes — the standard way to pass configuration, credentials, and runtime settings to PHP applications without hardcoding.
3mo ago linux intermediate
File Descriptors & ulimit PHP 5.0+
File descriptors are integer handles for open files, sockets, and pipes — each process has a limit (ulimit -n), and exhausting them causes 'too many open files' errors.
3mo ago linux intermediate
Linux Log Files 🧠 2
Log locations, rotation, and analysis tools on Linux — /var/log/ structure, journald, logrotate, and essential log analysis commands.
3mo ago linux intermediate
Linux Memory Management 🧠 1
How Linux allocates RAM — virtual memory, the page cache, swap, and the OOM killer — and what PHP developers need to know when PHP processes run out of memory.
3mo ago linux intermediate
Linux Networking Tools PHP 5.0+
Essential tools for diagnosing network issues on Linux servers — ss, netstat, curl, dig, tcpdump, and ping each reveal different layers of connectivity problems.
3mo ago linux intermediate
Linux Package Managers
apt (Debian/Ubuntu), yum/dnf (RHEL/CentOS/Fedora), apk (Alpine) — tools for installing, updating, and managing system software packages and their dependencies.
3mo ago linux beginner
Linux Performance Tools 🧠 1
Essential tools for diagnosing CPU, memory, IO, and network performance on Linux — top, htop, vmstat, iostat, perf, strace, and ltrace.
3mo ago linux intermediate
Linux User & Group Management 🧠 2
Managing users and groups on Linux servers — useradd, usermod, passwd, groups — and best practices for PHP web server user isolation and privilege separation.
3mo ago linux intermediate
Regex with grep, sed & awk
Three essential Linux text processing tools — grep for filtering lines, sed for stream editing, awk for field-based processing — all using regular expressions.
3mo ago linux intermediate
Systemd Services & Unit Files
Systemd is the init system managing service lifecycle on modern Linux — unit files define how services start, stop, restart, and depend on each other.
3mo ago linux intermediate
Diagram: Bash Scripting Bash Scripting bash4 🧠 1
Writing shell scripts in Bash to automate command-line tasks — from simple file operations to complex deployment pipelines.
3mo ago linux intermediate
Diagram: Cron Jobs Cron Jobs PHP 5.0+ 🧠 3
Scheduled tasks defined in a crontab file, executing commands at specified time intervals — from once a minute to once a year.
3mo ago linux beginner
Linux File System Hierarchy 🧠 1
The standard directory structure of Linux — /etc for config, /var for variable data, /tmp for temporary files, /usr for user programs — knowing it prevents misplacing files.
3mo ago linux beginner
Linux Processes PHP 5.0+
Every running program is a process with a PID, memory space, and file descriptors — ps, top, kill, and signals are the essential tools for managing them.
3mo ago linux intermediate
Shell Pipes & Redirects
Pipes (|) connect stdout of one command to stdin of another; redirects (<, >, >>) send stdin/stdout to files — the foundation of composable Unix command-line workflows.
3mo ago linux intermediate
✓ schema.org compliant