Skip to content

Instantly share code, notes, and snippets.

@huytt
huytt / install-proxmox-gui-xfce.sh
Created April 4, 2026 17:12
install-proxmox-gui-xfce
#!/usr/bin/env bash
set -euo pipefail
echo "=== Proxmox: Install lightweight GUI (XFCE) + LightDM + Firefox ESR ==="
echo "NOTE: This is for homelab / single-PC usage. Not recommended for production."
echo
# Must run as root
if [[ "$(id -u)" -ne 0 ]]; then
echo "Please run as root: sudo -i"