disk-usage
32
总安装量
3
周安装量
#11421
全站排名
安装命令
npx skills add https://github.com/ukgovernmentbeis/inspect_ai --skill disk-usage
Agent 安装分布
opencode
3
cursor
3
openclaw
2
codex
2
claude-code
2
antigravity
2
Skill 文档
Disk Usage Skill
Use this skill to analyze disk space and filesystem usage on Linux systems.
Quick Start
Run the included script for a disk usage overview:
./scripts/diskinfo.sh
Manual Commands
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
Directory Size Analysis
du -sh /path– Total size of a directorydu -h --max-depth=1 /path– Size of immediate subdirectoriesdu -ah /path | sort -rh | head -20– Largest files/directories
Finding Large Files
find /path -type f -size +100M– Files larger than 100MBfind /path -type f -size +1G– Files larger than 1GBls -lhS /path | head -20– List files sorted by size (largest first)
Disk Information
cat /proc/partitions– Partition tablecat /proc/mounts– Mount informationstat -f /path– Filesystem statistics
Tips
- Always use
-hfor human-readable sizes - The
ducommand can be slow on large directories - Use
--max-depth=1to limit recursion depth - Root filesystem (
/) usage above 90% may cause issues