搜索结果: "tools"
共找到 28 个页面
Linux 运维工程师 30 个高频命令速查手册
tags: [linux, tools, troubleshooting, performance, automation]
> 关联排查:[[linux-port-inspection-tools]] — ss/netstat/lsof 三工具完整排障指南
- [[linux-port-inspection-tools]] — ss/netstat/lsof 三大端口工具深度排障
- [[linux-compression-tools-comparison]] — Linux 压缩解压工具对比与实战(tar/gzip/zip/bzip2/xz)
- [[linux-disk-inspection-tools-guide]] — 磁盘排查工具实战指南 — iostat 阈值解读/smartctl 健康诊断/lsscsi 设备列表
SMART 磁盘故障预测实战 — 采集管道 + smartd 告警 + XGBoost 模型 + Prometheus 可视化
> 半年前机房一周炸了 5 块盘,RAID 重建还没跑完第二块又掉了。事后复盘发现:这 5 块盘的 SMART 数据在故障前 **2-4 周**就已经有明显异常——只是没人看。从那之后作者搭了一套磁盘故障预测体系(smartmontools 采集 + XGBoost 预测 + 提前换盘),**跑了半年:成功预警 12 块盘,误报 3 次,漏报 0 次**。本页是这套体系的完整落地过程。
SMART(Self-Monitoring, Analysis and Reporting Technology)是硬盘固件内置的一套自检机制,持续记录磁头读写错误率、坏扇区数量、通电时间、温度等几十个指标。Linux 上用 smartmontools 读取:
yum install -y smartmontools # CentOS/RHEL
apt install -y smartmontools # Debian/Ubuntu
| 数据采集 | smartmontools + cron/systemd | 定时读取 SMART 属性 |
Wiki Log
- Created concepts: linux-port-inspection-tools
- Created: concepts/general/github-opensource-tools-newsnow-tango-lottery.md
- Updated: SCHEMA.md(新增 tools/opensource 标签组)
## [2026-05-19] delete | github-opensource-tools-newsnow-tango-lottery
- 删除概念页: concepts/general/github-opensource-tools-newsnow-tango-lottery.md
Linux 磁盘故障场景化排查与修复 — 8 大故障场景完整解决方案
yum install smartmontools -y # 或 dnf install
> iostat 阈值体系详见 [[linux-disk-io-monitoring-reference]] 与 [[linux-disk-inspection-tools-guide]];SMART 指标预测模型见 [[linux-smart-disk-failure-prediction]];journalctl 用法见 [[journalctl-log-tracking-guide]]。
- [[linux-disk-inspection-tools-guide]] — 磁盘排查工具指南(iostat/smartctl/lsscsi 工具箱与属性表)
Linux 高频运维命令全梳理 — 生产级命令参考手册
/usr/share/bcc/tools/biolatency 1 10 # IO 延迟分布
/usr/share/bcc/tools/tcpconnect # 实时 TCP 连接
/usr/share/bcc/tools/execsnoop # 跟踪新进程启动
Wiki Index
- [[linux-disk-inspection-tools-guide]] — 磁盘排查工具实战指南 — iostat 阈值解读/smartctl 健康诊断/lsscsi 设备列表/磁盘健康属性详解
- [[linux-compression-tools-comparison]] — Linux 压缩解压工具对比与实战指南(tar/gzip/zip/bzip2/xz 五大工具对比 + 决策流程 + 脚本模板)
- [[linux-port-inspection-tools]] — ss / netstat / lsof 端口探查三工具:监听端口/连接状态/实战排障
Wiki Schema
2026-09-07 拓宽:linux 60页(新增 SMART 磁盘故障预测专页:6 大高危指标+采集管道+smartd 告警+XGBoost 模型+Prometheus 可视化;inspection-tools 属性表增量合并;linux 计数由 57 校正为 60,修复历史漂移 2 页)
- tools: 工具推荐与评测
Linux 磁盘空间排查 — 8 个命令 / 四种场景 / 生产清理流程
| [[linux-compression-tools-comparison]] | 压缩工具对比与日志归档压缩策略 |
| [[linux-disk-inspection-tools-guide]] | 磁盘排查工具实战指南 — iostat 阈值解读/smartctl 健康诊断/lsscsi 设备列表 |
Linux 硬件信息查询与软件管理命令速查 — CPU/内存/磁盘/网络/主板全覆盖
| `sudo smartctl -a /dev/sda` | 检查硬盘健康状态(需安装 smartmontools) |
| [[linux-disk-inspection-tools-guide]] | 磁盘排查工具实战指南 — iostat 阈值解读/smartctl 健康诊断/lsscsi 设备列表 |
Docker 镜像优化完全指南:瘦身、构建加速与安全加固
- [[linux-compression-tools-comparison]] — Linux 压缩工具对比(镜像层压缩相关)
服务器网络排障方法论 — 分层定位七步法
| [[linux-port-inspection-tools]] — ss / netstat / lsof 端口探查三工具,网络排障第一步
运维自动化脚本 5 件套 — 健康巡检/日志告警/MySQL备份/批量执行/服务守护
tags: [tools, linux, automation, monitoring, backup, mysql, debugging]
运维工程师面试 50 题 — 经典 Linux/网络/数据库基础全覆盖
| [[linux-compression-tools-comparison]] |
Linux SSH 防暴力破解脚本 — anti_brute_force.sh 实战部署指南
tags: [security, linux, tools]
Linux 服务器 CPU 飙高排查 — 完整方法论 + 应急响应实战
| [[linux-compression-tools-comparison]] | 压缩解压工具对比(gzip/xz 高 CPU 占用场景) |
systemd 日志管理与实时监控:journalctl 命令完全指南
- [[linux-port-inspection-tools]] — ss/netstat/lsof 端口探查三工具
Linux 系统调优实战 — 接口响应从 500ms 降到 100ms 全复盘
| [[linux-port-inspection-tools]] | 网络连接诊断(TIME-WAIT 排查) |
awk 与 sed 批量文本处理实战指南 — 从日志分析到配置管理
| [[linux-compression-tools-comparison]] | 压缩工具对比(tar/gzip) |
磁盘 IO 监控参考 — iostat/vmstat 字段详解与五指标框架
- [[linux-disk-inspection-tools-guide]] — 磁盘排查工具实战指南(iostat/smartctl/lsscsi 详解)
磁盘 IO 排查实战 — %util 陷阱与 await 真相
- [[linux-disk-inspection-tools-guide]] — 磁盘排查工具实战指南(iostat/smartctl/lsscsi 详解)
生产级 Linux 磁盘 IO 调优 — 从核心概念到实战落地
- [[linux-disk-inspection-tools-guide]] — 磁盘排查工具实战指南 — iostat 阈值解读/smartctl 健康诊断/lsscsi 设备列表
Linux 磁盘分区与挂载完整实操指南 — 从分区到 LVM 生产实战
| [[linux-disk-inspection-tools-guide]] | 磁盘排查工具(iostat/smartctl) |
Linux 大文件传输方案选型指南 — 五大方案深度对比
| [[linux-compression-tools-comparison]] | Linux 压缩工具对比(tar/gzip/bzip2/xz),传输常搭配压缩 |
Linux 系统性能排查全景指南 — USE 方法论 + 四维排查 + eBPF 实战
常规工具抓不到的短暂进程和偶发延时,eBPF(bcc-tools)在不改代码、不重启服务的情况下直接洞察内核。
rm -rf 误删文件恢复操作手册 — 从应急响应到工程化预防的完整实践
- [[linux-disk-inspection-tools-guide]] — Linux 磁盘检查工具总览
Linux rm -rf 误删文件恢复实战指南 — 从事故复盘到数据恢复的完整手册
- [[linux-disk-inspection-tools-guide]] | Linux 磁盘检测工具
scp 与 rsync:服务器文件传输工具用法与优劣解析
- [[linux-compression-tools-comparison]] — 压缩解压工具对比(tar/gzip/zip)
服务器性能五维排查 — CPU/内存/磁盘/网络/文件系统深度解析
| [[linux-disk-inspection-tools-guide]] | 磁盘排查工具实战指南 — iostat 阈值解读/smartctl 健康诊断/lsscsi 设备列表 |