Skip to content

Instantly share code, notes, and snippets.

@whiskerz007
Last active January 3, 2024 00:08
Show Gist options
  • Save whiskerz007/53c6aa5d624154bacbbc54880e1e3b2a to your computer and use it in GitHub Desktop.
Save whiskerz007/53c6aa5d624154bacbbc54880e1e3b2a to your computer and use it in GitHub Desktop.
How to setup a community version of Proxmox VE 5.x-6.x
# 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
@Justahobby01
Copy link

Justahobby01 commented Jul 25, 2021

Has anyone tested this after upgrading to 7.0?

Edit
Did not work for me..... but I don't guarantee my own work.

@towerhand
Copy link

I had this patch applied and working before upgrading to 7.0, still working afterwards, no nags on my end.

Not a clue if it works on a fresh install.

@Justahobby01
Copy link

It started working for me, too. I guess it was a browser cache issue.

@scottmando2000
Copy link

Working fine on 7.1-7

@Phone-guy
Copy link

Using these commands posted, then issuing
apt upgrade -y
and rebooting, Proxmox 7.1-7 updated to 7.1-12 no issues! Thanks!

@Compukid
Copy link

Compukid commented Jun 28, 2022

The commands above worked for me on Proxmox version 7.2-3
Oh, I rebooted the node, not sure I had to though.
thank you very much

@lacrimal
Copy link

Works on 7.2-7
But after
apt upgrade -y

@ngadmini
Copy link

ngadmini commented Feb 19, 2023

root@pve:~# dpkg -V proxmox-widget-toolkit | grep -q '/proxmoxlib\.js$'; echo $?                        
1
root@pve:~# apt policy proxmox-widget-toolkit
proxmox-widget-toolkit:
  Installed: 3.5.5
  Candidate: 3.5.5
  Version table:
 *** 3.5.5 500
        500 http://download.proxmox.com/debian/pve bullseye/pve-no-subscription amd64 Packages
        100 /var/lib/dpkg/status

what hell going on ?
BTW, there are many way to getting rid nag message. I've been writing some of them, in here

Regards

@Waldorf3
Copy link

Waldorf3 commented Nov 11, 2023

On Proxmox 8.0 need to add this after line 2 in gistfile1.txt above:
sed -i "s/^deb/\#deb/" /etc/apt/sources.list.d/ceph.list

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment