disk-usage

Installation
SKILL.md

Disk Usage Skill

Analyzes disk space and filesystem usage on Linux systems.

Suggested Workflow

  1. Run ./scripts/diskinfo.sh for a structured overview of mounts, block devices, and top directories.
  2. Check df -h output for any filesystem above 80% usage.
  3. Drill into high-usage mounts with du -h --max-depth=1 /mount to find large subdirectories.
  4. Locate specific large files with find /path -type f -size +100M.

Commands Reference

Filesystem Overview

  • df -h - Disk space usage for all mounted filesystems (human-readable)
  • df -i - Inode usage (number of files)
  • lsblk - Block device tree (disks, partitions)
  • mount - Currently mounted filesystems
Related skills
Installs
66
GitHub Stars
2.0K
First Seen
Jan 27, 2026