From 7742b8d6059987ebf9a459abf47b988cf36cca4b Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Fri, 29 Dec 2023 06:16:06 -0700 Subject: [PATCH] Update Virtualization/Proxmox/ProxmoxVE.md --- Virtualization/Proxmox/ProxmoxVE.md | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/Virtualization/Proxmox/ProxmoxVE.md b/Virtualization/Proxmox/ProxmoxVE.md index cc49204..f44b121 100644 --- a/Virtualization/Proxmox/ProxmoxVE.md +++ b/Virtualization/Proxmox/ProxmoxVE.md @@ -47,4 +47,28 @@ cat /etc/iscsi/initiatorname.iscsi | grep "InitiatorName=" | sed 's/InitiatorNam ``` !!! example - Output of this command will look something like `iqn.1993-08.org.debian:01:b16b0ff1778`. \ No newline at end of file + Output of this command will look something like `iqn.1993-08.org.debian:01:b16b0ff1778`. + +## Disable Enterprise Subscription functionality +You will likely not be paying for / using the enterprise subscription, so we are going to disable that functionality and enable unstable builds. The unstable builds are surprisingly stable, and should not cause you any issues. + +Add Unstable Update Repository: +```jsx title="/etc/apt/sources.list" +# Add to the end of the file +# Non-Production / Unstable Updates +deb https://download.proxmox.com/debian buster pve-no-subscription +``` + +!!! warning + Please note the reference to `buster` in both the sections above and below this notice, this may be different depending on the version of ProxmoxVE you are deploying. Please reference the version indicated by the rest of the entries in the sources.list file to know which one to use in the added line section. + +Comment-Out Enterprise Repository: +```jsx title="/etc/apt/sources.list.d/pve-enterprise.list" +# deb https://enterprise.proxmox.com/debian/pve buster pve-enterprise +``` + +Pull / Install Available Updates: +``` sh +apt-get update +apt dist-upgrade +``` \ No newline at end of file