Proxmox Tweeks

1. Ok that’s it for the Proxmox install. Now lets do a few little tweaks and install Home assistant

2. First we will change the repo used by Proxmox to be a non-commercial repo, this will allow us to access community developed plugins rather than the commercial ones. This step is not required

3. Login to the shell with putty and use su - to telnet to root and issue the following command, this must be done from the root terminal, so issue the su – command to shell to root.

sed -i "s/^deb/\#deb/" /etc/apt/sources.list.d/pve-enterprise.list

4. followed by

apt-get update

5. Then issues this command


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


6.followed by

apt-get update

7. To remove the NAG screen from Proxmox issue this command

sed -i.bak 's/NotFound/Active/g' /usr/share/perl5/PVE/API2/Subscription.pm && systemctl restart pveproxy.service

8. Finally reboot system:

reboot