Es gibt die Möglichkeit Proxmox als Distribution herunterzuladen und direkt zu installieren, will man jedoch ein Software Raid empfiehlt es sich erst ein Debian 11 (bullseye) zu installieren und während der Installationsroutine das gewünschte Software-Raid zu installieren. Anleitung dazu unter https://pve.proxmox.com/wiki/Install_Pr ... 1_Bullseye
Die Anleitung ist sehr gut beschrieben und wenn man Schritt für Schritt vorgeht und genau liest, dann klappt die Installation problemlos.
Meine Hürde war das ich überlesen hatte die /etc/hosts nach Vorgabe in der Anleitung anzupassen, weshalb nachfolgende Schritte fehlschlugen.
Kurzfassung der Anleitung:
Debian 11 (Bullseye) 64 Bit installieren
ISO Download
Vim und SSH Server installieren
Code: Alles auswählen
su
Code: Alles auswählen
apt update && apt install vim screen sudo gpg dirmngr -y
folgenden Inhalt in die /etc/apt/sources.list einfügen
Code: Alles auswählen
deb https://deb.debian.org/debian bullseye main contrib non-free
deb-src https://deb.debian.org/debian bullseye main contrib non-free
deb https://deb.debian.org/debian bullseye-updates main contrib non-free
deb-src https://deb.debian.org/debian bullseye-updates main contrib non-free
deb http://deb.debian.org/debian-security/ bullseye-security main contrib non-free
deb-src http://deb.debian.org/debian-security/ bullseye-security main contrib non-free
deb http://deb.debian.org/debian bullseye-backports main contrib non-free
deb-src http://deb.debian.org/debian bullseye-backports main contrib non-free
Anpassen der /etc/hosts
Code: Alles auswählen
vim /etc/hosts
Inhalt der /etc/hosts
Code: Alles auswählen
127.0.0.1 localhost.localdomain localhost pvelocalhost
192.168.15.250 proxmox.eigene-domain-einsetzen.tld
# The following lines are desirable for IPv6 capable hosts
::1 localhost ip6-localhost ip6-loopback ip6-pvelocalhost
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
IPv4 Forwading aktivieren
Code: Alles auswählen
echo 1 > /proc/sys/net/ipv4/ip_forward
Code: Alles auswählen
net.ipv4.ip_forward = 1
net.ipv6.conf.all.forwarding=1
Swappiness Einstellung ändern
Code: Alles auswählen
sudo mkdir -p /etc/systemd/system.conf.d;
sudo echo "[Manager]" > /etc/systemd/system.conf.d/disable-memory-accounting.conf;
sudo echo "DefaultMemoryAccounting=no" >> /etc/systemd/system.conf.d/disable-memory-accounting.conf;
chmod 644 /etc/systemd/system.conf.d/disable-memory-accounting.conf
Code: Alles auswählen
vm.swappiness=0
Optional: Netzwerk Adapter nach eth0 umbenennen
Code: Alles auswählen
sudo sed -i 's/GRUB_CMDLINE_LINUX=""/GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0"/g' /etc/default/grub; sudo grub-mkconfig -o /boot/grub/grub.cfgsudo grub-mkconfig -o /boot/grub/grub.cfg; sudo grub-mkconfig -o /boot/grub/grub.cfg
Code: Alles auswählen
sudo sed -i 's/enp4s0/eth0/g' /etc/network/interfaces
Code: Alles auswählen
reboot
Paketquelle erweitern
Code: Alles auswählen
echo "deb http://download.proxmox.com/debian/pve bullseye pve-no-subscription" > /etc/apt/sources.list.d/pve-install-repo.list;
echo 'deb http://download.proxmox.com/debian/ceph-pacific bullseye main' > /etc/apt/sources.list.d/ceph.list;
Code: Alles auswählen
wget https://enterprise.proxmox.com/debian/proxmox-release-bullseye.gpg -O /etc/apt/trusted.gpg.d/proxmox-release-bullseye.gpg
Code: Alles auswählen
apt update && apt dist-upgrade
Code: Alles auswählen
apt-get install proxmox-ve ssh postfix ksm-control-daemon open-iscsi systemd-sysv ssh usbutils
Code: Alles auswählen
apt remove os-prober
Code: Alles auswählen
apt remove linux-image-amd64 linux-image-5.*-amd64
Code: Alles auswählen
update-grub
Tipps:
Swap Partition Verhalten anpassen für Memory Sharing zwischen den VMs
VM - Quemu Guest Agent installieren und aktivieren
VirtIO Driver für Windows Gastsysteme
VHD in QCOW Format konvertieren
RDP Server installieren und konfigurieren
Sambaserver installieren und konfigurieren => Windows Netzwerkfreigabe erstellen