Not sure if anyone has done this already (because I haven't looked) but here is a one-liner I use after I install Proxmox on my servers.
It does 4 things.
1) places pve-no-subscription in the /etc/apt/sources.list file
2) comments out the pve-enterprise.list
3) apt update && apt dist-upgrade
4) reboots
Here you go. If anyone has anything better or can add to this, I am always open to improvement!
credit to ph0x for helping with
It does 4 things.
1) places pve-no-subscription in the /etc/apt/sources.list file
2) comments out the pve-enterprise.list
3) apt update && apt dist-upgrade
4) reboots
Here you go. If anyone has anything better or can add to this, I am always open to improvement!
sed -i '1ideb http://download.proxmox.com/debian buster pve-no-subscription' /etc/apt/sources.list && sed -i 's/^deb/#deb/g' /etc/apt/sources.list.d/pve-enterprise.list && apt update && apt dist-upgrade -y && reboot
credit to ph0x for helping with
sed -i 's/^deb/#deb/g' /etc/apt/sources.list.d/pve-enterprise.list
Last edited: