Choose update repository
Proxmox is open-source and is completely free to download and use.
However, there may be some confusion at first, when you see the
following message in the web console stating No valid subscription
:
The default installation is configured to use the Enterprise
repository, which requires a paid Enterprise license, and this also
grants you professional support. For now, you may simply click OK
to
bypass the nag screen.
To get an enterprise license visit Proxmox Support.
Community repository
If you don’t want to pay for an enterprise license, you may enable the
free community repository which allows you to access Proxmox’s
no-subscription
version, which is ideal for individual users,
small-scale setups, or open-source enthusiasts who want the full
Proxmox experience but without professional updates and support.
Run this command to enable the community repository:
## Backup existing sources list for Proxmox
cp /etc/apt/sources.list.d/pve-enterprise.list /etc/apt/sources.list.d/pve-enterprise.list.bak
## Disable enterprise repository by commenting it out
sed -i 's/^deb/#deb/' /etc/apt/sources.list.d/pve-enterprise.list
sed -i 's/^deb/#deb/' /etc/apt/sources.list.d/ceph.list
## Add the no-subscription community repository
echo "deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription" > /etc/apt/sources.list.d/pve-no-subscription.list
## Update the package lists
apt update
## Clear the cache to make the changes effective immediately
systemctl restart pveproxy.service
Although you will be able to receive community updates, this does not disable the nag screen, which will persist.