Proxmox Tweaks
Quick guide to tweak a new proxmox install.
Remove the subscription warning on login
SSH onto your Proxmox Node and run the following
sed -i.backup "s/data.status !== 'Active'/false/g" /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js && systemctl restart pveproxy.service
Close the session and web browser and clear cache.
Change the enterprise repo for updates.
SSH onto you Proxmox Node
nano /etc/apt/sources.list
add the following line
deb http://download.proxmox.com/debian/pve buster pve-no-subscription
- ctrl O - write file
- Enter to save
- ctrl X - exit
.
nano /etc/apt/sources.list.d/pve-enterprise.list
put a # infront of the enterprise repo to remove it
#deb https://enterprise.proxmox.com/debian/pve buster pve-enterprise
- ctrl O - write file
- Enter to save
- ctrl X - exit
apt update && apt -y full-upgrade
All Done