Files
microdao-daarion/FULL-DISK-ANALYSIS.md
Apple 5290287058 feat: implement TTS, Document processing, and Memory Service /facts API
- TTS: xtts-v2 integration with voice cloning support
- Document: docling integration for PDF/DOCX/PPTX processing
- Memory Service: added /facts/upsert, /facts/{key}, /facts endpoints
- Added required dependencies (TTS, docling)
2026-01-17 08:16:37 -08:00

145 lines
4.1 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 📊 Повний аналіз використання диску
**Дата:** 2026-01-12
**Проблема:** Диск показує зайнято ~1.4TB, але знайдено тільки ~763GB
---
## 🔍 Знайдені великі директорії
### В домашній директорії (~763GB):
| Директорія | Розмір | Деталі |
|------------|--------|--------|
| **Library** | 206GB | Контейнери, Application Support, кеші |
| **Desktop** | 145GB | Проєкти, відео |
| **hf_models** | 100GB | Hugging Face моделі |
| **github-projects** | 100GB | Git репозиторії |
| **Movies** | 83GB | Відео файли |
| **Documents** | 69GB | Документи |
| **ComfyUI** | 38GB | ComfyUI моделі |
| **Downloads** | 5.5GB | Завантаження |
| **Інші** | ~17GB | Різне |
**Всього знайдено:** ~763GB
---
## 🔍 Детальний розбір Library (206GB)
### Containers (122GB):
- **Docker:** 122GB ⚠️
- Інші контейнери: ~200MB
### Application Support (32GB):
- Cursor: 13GB
- Notion: 6.9GB
- strawberry: 2.8GB
- BraveSoftware: 2.4GB
- Google: 2.3GB
- Інші: ~4.6GB
### Group Containers (27GB):
- Потрібно перевірити детально
### Caches (10GB):
- pip: 1.6GB
- BraveSoftware: 1.6GB
- Google: 1.5GB
- Homebrew: 972MB
- Інші: ~4.3GB
### com.pieces.os (9.6GB):
- Pieces OS дані
### pnpm (2.7GB):
- pnpm кеш
---
## 🔍 Великі файли (>10GB)
Знайдені файли:
1. `~/.cursor/worktrees/microdao-daarion/s4s0P/models/qwen3-vl-32b-instruct/qwen3-vl-32b-instruct-f16.gguf`
2. `~/.cursor/worktrees/microdao-daarion/6IOTQ/models/qwen3-vl-32b-instruct/qwen3-vl-32b-instruct-f16.gguf`
3. `~/ComfyUI/models/checkpoints/flux2-dev-Q8_0.gguf`
4. `~/github-projects/microdao-daarion/daarion-backup.bundle`
5. `~/Library/Containers/com.docker.docker/Data/vms/0/data/Docker.raw`
6. `~/.bitmonero/lmdb/data.mdb`
---
## ❓ Де решта ~640GB?
**Проблема:** Диск показує зайнято ~1.4TB, але знайдено тільки ~763GB
**Можливі причини:**
1. **Docker.raw може бути більшим:**
- Docker.raw може займати більше місця ніж показує `du`
- Потрібно перевірити реальний розмір
2. **Приховані файли:**
- `.cursor` директорія може містити великі файли
- `.bitmonero` може займати багато місця
3. **Симлінки та hard links:**
- `/System/Volumes/Data/Volumes` показує 3.5TB (можливо симлінки)
4. **Time Machine локальні snapshots:**
- Можуть займати місце, але не показуються в `du`
5. **Інші volumes:**
- Можуть бути змонтовані інші диски
---
## 🔧 Команди для діагностики
### Перевірити Docker.raw:
```bash
ls -lh ~/Library/Containers/com.docker.docker/Data/vms/0/data/Docker.raw
du -sh ~/Library/Containers/com.docker.docker/Data/vms
```
### Перевірити приховані файли:
```bash
du -sh ~/.cursor
du -sh ~/.bitmonero
find ~ -name ".*" -type d -exec du -sh {} \; 2>/dev/null | sort -rh | head -20
```
### Перевірити Time Machine:
```bash
tmutil listlocalsnapshots /
tmutil listlocalsnapshots /System/Volumes/Data
```
### Перевірити volumes:
```bash
df -h
diskutil list
mount | grep -E "disk|volume"
```
### Знайти найбільші файли:
```bash
find ~ -type f -size +10G 2>/dev/null
find ~ -type f -size +50G 2>/dev/null
```
---
## 🎯 План дій
1. **Перевірити Docker.raw реальний розмір**
2. **Перевірити приховані директорії**
3. **Перевірити Time Machine snapshots**
4. **Знайти великі файли (>50GB)**
5. **Перевірити volumes**
---
**Оновлено:** 2026-01-12
**Статус:** Аналіз в процесі