Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Zandereins/schliff --skill 09-linux-ops-cheatsheetgit clone --depth 1 https://github.com/Zandereins/schliffWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/zandereins/schliff/09-linux-ops-cheatsheet)<a href="https://agentmods.dev/skills/zandereins/schliff/09-linux-ops-cheatsheet"><img src="https://agentmods.dev/badge/skills/zandereins/schliff/09-linux-ops-cheatsheet/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/zandereins/schliff/09-linux-ops-cheatsheet"><img src="https://agentmods.dev/badge/skills/zandereins/schliff/09-linux-ops-cheatsheet.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00103 | $0.02111 |
| Opus 5 | $0.00051 | $0.01056 |
| Sonnet 5 | $0.00021 | $0.00422 |
| Haiku 4.5 | $0.00010 | $0.00211 |
Grade B, and why
linux-ops-cheatsheet scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
- `iostat` ships in the `sysstat` package (`sudo yum install sysstat` / `sudo dnf install sysstat`). How it starts
The opening of the file, as written. The whole thing — 191 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Linux Ops Cheatsheet / Linux 运维速查
System-administration one-liners for Linux hosts. Read-only diagnostics are safe to run as-is. Commands that touch the kernel, the bootloader, or running processes carry explicit DANGER markers and confirmation gates — read them before you paste.
When to use / 何时使用
- Inspect memory usage (
free) or disk IO (iostat). - Cap the kernel's usable RAM for low-memory testing (
mem=boot param). - Detach a foreground job to the background so it survives logout (
bg+disown). - Force an unresponsive host to reboot via the SysRq interface — last resort only.
Do NOT use this skill for algorithm or data-structure design questions; the file name in the upstream corpus was mislabeled "algorithms" but the content is Linux ops.
Global preconditions / 全局前提
- Distro examples target Red Hat / Fedora family. Paths differ on Debian/Ubuntu/SUSE.
- Bootloader and SysRq actions require root (
sudoor a root shell). iostatships in thesysstatpackage (sudo yum install sysstat/sudo dnf install sysstat).
1. Memory usage (read-only / 只读) — 查看内存使用情况
No guard needed; this only reads counters.
free -m # show memory usage in MB / 以 MB 为单位查看内存使用情况
Verify: output prints Mem: and Swap: rows. Add -h for human-readable units.
2. Disk IO statistics (read-only / 只读) — 查看系统的 IO 统计信息
No guard needed; this only samples kernel IO counters.
iostat -k 3 # print in KB, refresh every 3 seconds / 以 KB 打印结果,3 秒显示一次
Precondition: sysstat installed (see Global preconditions). Stop with Ctrl+C.
Verify: per-device tps/kB_read/s/kB_wrtn/s columns appear and update.
3. Run a job in the background, surviving logout — 进程放入后台并脱离前台
Useful over SSH so a long job is not killed when the connection drops.
Non-destructive to data, but disown removes the job from the shell's job
table, so you can no longer fg/kill %n it from this shell afterwards.
./test # 1. start the program / 运行程序
# 2. press Ctrl+Z to suspend it / 按 Ctrl+Z 使程序暂停
bg %1 # 3. resume it in the background (%1 = job number from `jobs`) / 将程序放入后台运行
disown -h %1 # 4. shield it from SIGHUP on logout / 退出登录时不再收到 SIGHUP
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 191 lines · 103 tokens per session scan B 51e0f4fde49a
linux-ops-cheatsheet is a skill published in the GitHub repository Zandereins/schliff (16 stars, last pushed today), licensed MIT. It adds 103 tokens to every session and 2,111 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-04.
Other skills, from other repositories
linux-admin
A guide for administering Alibaba Cloud Linux 4 servers, including shell scripts, services, networking, firewalls, files, processes, and storage.
linux-hardening
Procédure de durcissement et sécurisation d'un serveur Linux.
Инструкция по шифрованию Ubuntu LUKS с отдельным /boot
A command-focused guide for setting up full-disk encryption on Ubuntu with LUKS. It covers a separate unencrypted /boot partition and encrypted swap and root partitions so the system can still start correctly.
daemon-development
Build daemon/background processes that start on boot, run continuously, and manage their own lifecycle. Covers macOS launchd (plist files, agents vs daemons), Linux systemd (unit files), Windows services, process supervision, logging, health checks, graceful shutdown, auto-restart, and AI-powered daemons that manage…
shannot
Run diagnostic scripts in sandbox with human approval (MCP tool).
sysadmin
System administration expert for Linux, macOS, Windows, services, and monitoring.