smithery.ai

Debug a disk problem

Enable an agent to debug disk problems

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 877 B
  • docs SUMMARY.md 66 B

History

  1. First recorded snapshot · 1 installs

SKILL.md

Debug a disk problem

If you need to see what might be wrong with reading or writing to a disk, you can look at the debug file that ends in .disklog. This file is the disk log. It records the time of each byte read or written, and what instruction was executed to perform the operation.

Each line has "RD" (for reads) or "WR" (for writes) to indicate what took place.

You can also find the physical encoding of a disk image in a debug file that ends in .physical.

When debugging anything, several other files are helpful:

  • the metrics file (how many times certain events occur; ends in .metrics)
  • the instruction log (all instructions sorted by place in memory it was

executed; file ends in .asm)

  • the timeset file (how much time each instruction took; ends in .time)