Install Proxmox VE
mainFollow these steps to install Proxmox VE on your hardware. If you are using Proxmox 7.4, there is a known issue where the graphical installer may crash. Use the workaround provided below.
Standard Installation
- Download the Proxmox ISO and create an installation USB (e.g., using rufus).
- Boot from the USB and run the installer.
- For an IPv4 static IP, use the format
192.168.1.XXX/24. - Once finished, access the web interface at
https://<THE_IP_YOU_CONFIGURED>:8006/. - Connect via SSH:
ssh root@<THE_IP_YOU_CONFIGURED>.
Fix Proxmox 7.4 Graphical Installer Crash
If the installer crashes after displaying Starting the installer GUI:
- Press
CTRL + ALT + F3. - Run the following commands:
Xorg -configure cp /root/xorg.conf.new /etc/X11/xorg.conf sed -i 's/amdgpu/fbdev/g' /etc/X11/xorg.conf - Press
CTRL + ALT + F1and runstartx.
Post-Installation Setup
Switch to non-subscription repositories and install CPU microcode using these community scripts:
# Switch to non-subscription repositories
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/tools/pve/post-pve-install.sh)"
# Install CPU Microcode
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/tools/pve/microcode.sh)"ssh root@<THE_IP_YOU_CONFIGURED>