No description
Find a file
2026-06-07 21:09:59 -04:00
--archive/session-prompts sync: checkpoint 2026-06-07 2026-06-07 21:09:59 -04:00
.ai-chats sync: checkpoint 2026-06-07 2026-06-07 21:09:59 -04:00
.cc-iterations sync: checkpoint 2026-06-07 2026-06-07 21:09:59 -04:00
.perpetual-motion sync: checkpoint 2026-06-07 2026-06-07 21:09:59 -04:00
docs sync: checkpoint 2026-06-07 2026-06-07 21:09:59 -04:00
qdrant-backup-fix-2025-12-16 sync: checkpoint 2026-06-07 2026-06-07 21:09:59 -04:00
1.png sync: checkpoint 2026-06-07 2026-06-07 21:09:59 -04:00
backup-2025-12-22.md sync: checkpoint 2026-06-07 2026-06-07 21:09:59 -04:00
backup-dell7610.sh sync: checkpoint 2026-06-07 2026-06-07 21:09:59 -04:00
backup-excludes.txt sync: checkpoint 2026-06-07 2026-06-07 21:09:59 -04:00
backup-simple.sh sync: checkpoint 2026-06-07 2026-06-07 21:09:59 -04:00
kubuntu-backup-guide.md sync: checkpoint 2026-06-07 2026-06-07 21:09:59 -04:00
README.md sync: checkpoint 2026-06-07 2026-06-07 21:09:59 -04:00
RESTORE.md sync: checkpoint 2026-06-07 2026-06-07 21:09:59 -04:00
RESUME.md sync: checkpoint 2026-06-07 2026-06-07 21:09:59 -04:00

Backup Linux Host

Documentation, scripts, and incident records for backing up and maintaining Linux hosts.

Dell7610 Complete System Backup

Full system backup for dell7610 Kubuntu host before Proxmox migration.

Quick Start

# Run the backup (requires sudo)
sudo ./backup-dell7610.sh

What Gets Backed Up

Partition Mount Point Size Method
sda4 / (root) 57G tar.gz (preserves permissions)
sda1 /boot/efi 6M tar.gz
sda2 /mnt/annex 501G rsync
md0 (RAID10) /home 873G rsync

Backup Destination

/mnt/pool/Darren/dell7610-backup-2025-12-16/

Files

File Purpose
backup-dell7610.sh Main backup script
backup-excludes.txt Rsync exclusion patterns
RESTORE.md VM restoration guide

Contents

Incident Records

Date Issue Folder
2025-12-16 Qdrant backup disk exhaustion qdrant-backup-fix-2025-12-16/
2025-12-16 Dell7610 pre-Proxmox backup ./ (this directory)

Qdrant Backup Fix (2025-12-16)

Critical fix for disk exhaustion caused by Qdrant backup system not deleting internal snapshots after download.

Key Files:

  • scripts/backup.sh - Fixed backup script with internal snapshot deletion
  • scripts/emergency-cleanup.sh - Emergency cleanup procedure
  • monitoring/check-disk-health.sh - Disk health monitoring
  • docs/incident-report.md - Full incident report
  • docs/root-cause-analysis.md - Technical deep-dive

Quick Reference:

# Check disk health
./qdrant-backup-fix-2025-12-16/monitoring/check-disk-health.sh

# Emergency cleanup (when disk is full)
./qdrant-backup-fix-2025-12-16/scripts/emergency-cleanup.sh

# Clean qdrant internal snapshots only
docker exec qdrant sh -c "rm -rf /qdrant/snapshots/*"

# Clean external backups (keep latest per collection)
./qdrant-backup-fix-2025-12-16/scripts/cleanup-external.sh

Machine Reference

Host Purpose Key Partitions
dell7610 Kubuntu workstation /, /home (RAID), /mnt/annex

Backup Locations

Location Description
/mnt/annex/qdrant-backups/ External Qdrant backup storage
/mnt/pool/Backups/ Synology NAS backup destination
/qdrant/snapshots/ Internal Qdrant snapshots (inside container)