Update Virtualization/Proxmox/ProxmoxVE.md

This commit is contained in:
Nicole Rappe
2023-12-29 06:16:06 -07:00
parent cd9ff0222b
commit 7742b8d605

View File

@ -48,3 +48,27 @@ cat /etc/iscsi/initiatorname.iscsi | grep "InitiatorName=" | sed 's/InitiatorNam
!!! example !!! example
Output of this command will look something like `iqn.1993-08.org.debian:01:b16b0ff1778`. 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
```