← 返回 Skills 市场
45
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install linux-ops
功能描述
Linux 运维速查。当需要:(1) 进程管理 (2) 日志分析 (3) 网络诊断 (4) 性能监控 (5) 用户管理时使用。
使用说明 (SKILL.md)
Linux Operations
Linux 运维命令速查手册。
快速参考
进程管理
ps aux | grep nginx # 查找进程
kill -9 PID # 终止进程
systemctl status nginx # 服务状态
journalctl -u nginx -f # 服务日志
系统资源
top / htop # CPU/内存
free -h # 内存
df -h # 磁盘
du -sh /var/log # 目录大小
网络
ip addr # 网络接口
netstat -tuln # 监听端口
ss -tun # 连接状态
ping -c 5 host # 测试连通
curl -v https://example.com # HTTP 测试
日志
tail -f /var/log/syslog # 实时查看
grep "error" /var/log/syslog # 搜索日志
journalctl -u nginx --since "1 hour ago"
文件查找
find /path -name "*.py" # 按名称查找
find / -size +100M # 按大小查找
grep -r "pattern" /path # 递归搜索
详细参考
- 进程管理: references/process.md - 进程查看、管理、服务
- 系统资源: references/system.md - CPU、内存、磁盘
- 网络诊断: references/network.md - 连接、端口、抓包
- 日志分析: references/logs.md - 系统日志、nginx 日志
- 用户权限: references/users.md - 用户、组、权限
常用命令
查找大文件
find / -type f -size +100M 2>/dev/null
du -ah / | sort -rh | head -20
统计访问
awk '{print $1}' access.log | sort | uniq -c | sort -rn | head
awk '{print $9}' access.log | sort | uniq -c | sort -rn
排查端口占用
lsof -i :80
netstat -tlnp | grep 80
文档
- TLDR:
tldr command - Linux 命令速查: https://cheatography.com/davechild/cheat-sheets/linux-command-line/
安全使用建议
This skill appears safe as a Linux command reference. Before installing, be aware that some listed commands can stop services, change firewall rules, capture network traffic, delete users, or grant sudo privileges if executed. Treat it as a cheat sheet and confirm any system-changing command before running it.
功能分析
Type: OpenClaw Skill
Name: linux-ops
Version: 1.0.0
The 'linux-ops' skill bundle is a comprehensive reference guide for standard Linux system administration tasks, including process management, log analysis, and network diagnostics. It contains only documentation and common shell commands (e.g., in SKILL.md and references/*.md) without any evidence of malicious intent, obfuscation, or data exfiltration.
能力评估
Purpose & Capability
The skill is an instruction-only Linux operations reference, and the listed commands match its stated scope of process, logs, network, performance, and user management.
Instruction Scope
The artifacts provide command examples, including process termination, service control, firewall changes, and user/permission management; they do not instruct hidden or automatic execution.
Install Mechanism
No install spec, code files, required binaries, environment variables, or credentials are present.
Credentials
Broad local inspection commands such as reading logs, finding files under /, checking network state, and packet capture are expected for Linux operations but can expose sensitive system information if used carelessly.
Persistence & Privilege
The reference includes privileged administration examples such as enabling services and granting sudo rights, but these are documented examples rather than persistent behavior by the skill itself.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install linux-ops - 安装完成后,直接呼叫该 Skill 的名称或使用
/linux-ops触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release
元数据
常见问题
Linux Ops 是什么?
Linux 运维速查。当需要:(1) 进程管理 (2) 日志分析 (3) 网络诊断 (4) 性能监控 (5) 用户管理时使用。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 45 次。
如何安装 Linux Ops?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install linux-ops」即可一键安装,无需额外配置。
Linux Ops 是免费的吗?
是的,Linux Ops 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Linux Ops 支持哪些平台?
Linux Ops 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Linux Ops?
由 afine907(@afine907)开发并维护,当前版本 v1.0.0。
推荐 Skills