Du befindest dich hier: Willkommen » Linux » Proxmox

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen der Seite angezeigt.

Link zu der Vergleichsansicht

Beide Seiten, vorherige ÜberarbeitungVorherige Überarbeitung
Nächste Überarbeitung
Vorherige Überarbeitung
linux:proxmox [05.11.2023 03:54] Martinlinux:proxmox [07.12.2024 12:20] (aktuell) Martin
Zeile 2: Zeile 2:
  
 [[https://www.proxmox.com/de/|Proxmox]] ist ein freier Level 1 Hypevisor basierend auf Linux. [[https://www.proxmox.com/de/|Proxmox]] ist ein freier Level 1 Hypevisor basierend auf Linux.
 +
 +## Benutzer in CT Container anlegen
 +
 +```
 +apt update
 +apt install -y sudo curl wget nano mc
 +adduser martin
 +usermod -aG sudo martin
 +groups martin
 +su martin
 +```
  
 ## Community Repository ## Community Repository
-<code bash>+```
 rm /etc/apt/sources.list.d/pve-enterprise.list rm /etc/apt/sources.list.d/pve-enterprise.list
-rm /etc/apt/sources.list.d/ceph-quincy+rm /etc/apt/sources.list.d/ceph.list
 echo "deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription">>/etc/apt/sources.list.d/pve-community.list echo "deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription">>/etc/apt/sources.list.d/pve-community.list
 apt update && apt full-upgrade -y && apt autoremove -y apt update && apt full-upgrade -y && apt autoremove -y
 reboot reboot
-</code>+```
  
 Weitere Informationen im [Proxmox Wiki](https://pve.proxmox.com/wiki/Package_Repositories#sysadmin_no_subscription_repo) Weitere Informationen im [Proxmox Wiki](https://pve.proxmox.com/wiki/Package_Repositories#sysadmin_no_subscription_repo)
Zeile 21: Zeile 32:
  
 Jetzt muss der freie Platz noch neu zugeordnet werden. Dazu unter **proxmox** -> **shell** und folgende Befehle eingeben: Jetzt muss der freie Platz noch neu zugeordnet werden. Dazu unter **proxmox** -> **shell** und folgende Befehle eingeben:
- 
-<code bash> 
-lvremove /dev/pve/data 
-lvresize -l 100%FREE /dev/pve/root 
-resize2fs /dev/mapper/pve-root 
-</code> 
- 
-bzw. 
  
 <code bash> <code bash>
Zeile 41: Zeile 44:
  
 Quelle: [[https://www.youtube.com/watch?v=LuCXHHc2u18|Techhut via Youtube ab ca. 8:30]] bzw. [[https://gist.github.com/laineantti/4fc29acbbd25593619a76b413e42b78f]] Quelle: [[https://www.youtube.com/watch?v=LuCXHHc2u18|Techhut via Youtube ab ca. 8:30]] bzw. [[https://gist.github.com/laineantti/4fc29acbbd25593619a76b413e42b78f]]
 +
 +## Cluster-Konfiguration löschen
 +
 +```
 +systemctl stop pve-cluster corosync
 +pmxcfs -l
 +rm -R /etc/corosync/*
 +rm /etc/pve/corosync.conf
 +killall pmxcfs
 +systemctl start pve-cluster
 +```
  
 ## VM auf anderen Host übertragen ## VM auf anderen Host übertragen
linux/proxmox.1699156493.txt.gz · Zuletzt geändert: 05.11.2023 03:54 von Martin