← スキル一覧に戻る

disk-usage
by UKGovernmentBEIS
disk-usageは、other分野における実用的なスキルです。複雑な課題への対応力を強化し、業務効率と成果の質を改善します。
⭐ 1,682🍴 379📅 2026年1月23日
ユースケース
⚡
作業効率化
日常的な作業を効率化し、生産性を向上。
📋
プロジェクト管理
タスク管理やプロジェクト進捗の追跡を支援。
👥
チーム連携強化
チーム内のコミュニケーションと連携を改善。
SKILL.md
name: disk-usage description: Analyze disk space usage and filesystem information including mounts, usage, and large files
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
スコア
総合スコア
75/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
✓人気
GitHub Stars 1000以上
+15
○最近の活動
3ヶ月以内に更新がある
0/10
✓フォーク
10回以上フォークされている
+5
○Issue管理
オープンIssueが50未満
0/5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です