Created
March 12, 2023 15:16
-
-
Save yalefox/a8f348d9538eedec4294c32a2d3781fe to your computer and use it in GitHub Desktop.
Proxmox - Disable Enterprise Repo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Rename file (copy then delete) | |
cp /etc/apt/sources.list.d/cp pve-enterprise.list /etc/apt/sources.list.d/ | |
cp pve-no-enterprise.list | |
rm /etc/apt/sources.list.d/pve-enterprise.list | |
# Add the non-enterprise repo to proxmox | |
sudo sh -c 'echo "deb http://download.proxmox.com/debian/pve buster pve-no-subscription" >> pve-no-subscription.list | |
# Get updates | |
apt-get update -y | |
apt-get dist-upgrade -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment