diff --git a/README.md b/README.md index 13b385e..0a51a67 100644 --- a/README.md +++ b/README.md @@ -178,6 +178,7 @@ Siehe [docs/TROUBLESHOOTING.md](docs/TROUBLESHOOTING.md) fuer: - Netzwerk-Probleme - SSL-Zertifikat Fehler - Backup-Probleme +- VT-x/KVM nicht verfuegbar ## Changelog @@ -200,3 +201,5 @@ Siehe [docs/TROUBLESHOOTING.md](docs/TROUBLESHOOTING.md) fuer: - Host + Docker Container Monitoring - WireGuard + Fail2Ban Integration - Separates Git-Repository: proxmox-netdata +- VT-x im BIOS aktiviert fuer VM-Support +- VM 100 "docker-services" vorbereitet (Debian 12 Cloud Image) diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 90ec781..df79bef 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -9,6 +9,7 @@ Detaillierte Anleitung zur Erstinstallation der Proxmox Infrastruktur. - **CPU:** Min. 2 Cores (4 empfohlen) - **RAM:** Min. 4GB (8GB empfohlen) - **Speicher:** Min. 50GB SSD +- **VT-x/AMD-V:** Im BIOS aktiviert (fuer VMs erforderlich) ### Software diff --git a/docs/TROUBLESHOOTING.md b/docs/TROUBLESHOOTING.md index 9666450..1256e8d 100644 --- a/docs/TROUBLESHOOTING.md +++ b/docs/TROUBLESHOOTING.md @@ -492,6 +492,45 @@ type C:\nginx\logs\error.log | findstr "limiting" --- +### VT-x/KVM nicht verfuegbar + +**Problem:** `KVM virtualisation configured, but not available` + +**Symptom:** VMs starten nicht, `/dev/kvm` existiert nicht + +**Ursache:** Intel VT-x oder AMD-V ist im BIOS deaktiviert + +**Diagnose:** +```bash +# Pruefen ob vmx (Intel) oder svm (AMD) Flags vorhanden +egrep -c '(vmx|svm)' /proc/cpuinfo +# Ausgabe 0 = VT-x deaktiviert + +# KVM Device pruefen +ls -la /dev/kvm +``` + +**Loesung fuer HP Z2 Workstation:** +1. Neustart, F10 fuer BIOS Setup +2. Security -> System Security +3. **Virtualization Technology (VT-x)** -> Enabled +4. **VT-d** -> Enabled (optional, fuer PCI Passthrough) +5. F10 zum Speichern und Beenden + +**Loesung fuer andere Systeme:** +- BIOS/UEFI aufrufen (meist F2, F10, DEL beim Boot) +- Suche nach: "Virtualization", "VT-x", "AMD-V", "SVM" +- Aktivieren und speichern + +**Nach Aktivierung:** +```bash +# Pruefen +ls -la /dev/kvm +egrep -c '(vmx|svm)' /proc/cpuinfo # Sollte > 0 sein +``` + +--- + ## Kontakt / Hilfe - **Gitea Issues:** https://eckardt-git.duckdns.org/Martin/proxmox-infrastruktur/issues