phone guy Posted April 25, 2022 Share #1 Posted April 25, 2022 (edited) Issuing these commands on main PVE node shell, it replaced subscription only repo (paid) to community driven repo (free). Removes the NO SUBSCRIPTION nag when logging into web gui portal and updates proxmox to most current version, super easy. # Disable Commercial Repo sed -i "s/^deb/\#deb/" /etc/apt/sources.list.d/pve-enterprise.list apt-get update # Add PVE Community Repo echo "deb http://download.proxmox.com/debian/pve $(grep "VERSION=" /etc/os-release | sed -n 's/.*(\(.*\)).*/\1/p') pve-no-subscription" > /etc/apt/sources.list.d/pve-no-enterprise.list apt-get update # Remove nag echo "DPkg::Post-Invoke { \"dpkg -V proxmox-widget-toolkit | grep -q '/proxmoxlib\.js$'; if [ \$? -eq 1 ]; then { echo 'Removing subscription nag from UI...'; sed -i '/data.status/{s/\!//;s/Active/NoMoreNagging/}' /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js; }; fi\"; };" > /etc/apt/apt.conf.d/no-nag-script apt --reinstall install proxmox-widget-toolkit # Update proxmox pve to newest available version apt upgrade -y After the update process completes, click the reboot button and you will be updated to newest version. Logout of web ui, refresh and login and you will see no subscription nag screen. Press the thanks button on this post Edited April 25, 2022 by phone guy 2 3 Quote Link to comment Share on other sites More sharing options...
loomes Posted April 26, 2022 Share #2 Posted April 26, 2022 Use ALWAYS "dist-upgrade" not "upgrade" on Proxmox. otherwise it could end badly. 1 Quote Link to comment Share on other sites More sharing options...
phone guy Posted April 27, 2022 Author Share #3 Posted April 27, 2022 11 hours ago, loomes said: Use ALWAYS "dist-upgrade" not "upgrade" on Proxmox. otherwise it could end badly. You mean the last command should be this instead? # Update proxmox pve to newest DIST-UPGRADE version apt dist-upgrade -y Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.