6f52d46267
Enthält Host-Doku, MQTT/HA, Git-Setup, Power-Monitoring und GPU-Idle (pve2). Co-authored-by: Cursor <cursoragent@cursor.com>
37 lines
656 B
Markdown
37 lines
656 B
Markdown
# Speicher & Wartung
|
|
|
|
## Speicher pve1 (Stand nach Setup)
|
|
|
|
| Storage | Verwendung |
|
|
|---------|------------|
|
|
| `/` (local) | ISOs, Templates, Backups |
|
|
| local-lvm | VM-Disks (opnsense-fallback: 32 GB) |
|
|
|
|
## Speicher prüfen
|
|
|
|
```bash
|
|
df -h /
|
|
pvesm status
|
|
lvs pve
|
|
```
|
|
|
|
## Verwaiste Disks entfernen
|
|
|
|
Falls ein Restore fehlschlägt:
|
|
|
|
```bash
|
|
qm destroy 104 --purge 1
|
|
lvremove -f pve/vm-104-disk-0 pve/vm-104-disk-1
|
|
```
|
|
|
|
## VM-Konfiguration anzeigen
|
|
|
|
```bash
|
|
qm config 104
|
|
qm list
|
|
```
|
|
|
|
## Thin-Pool Warnung
|
|
|
|
Beim Restore kann LVM warnen, dass die Summe der Thin-Volumes den Pool übersteigt. Bei Bedarf Thin-Pool erweitern oder ungenutzte VMs/Disks entfernen.
|