
Installing Home Assistant into Proxmox 7
Publish date: Feb-2022.
First up is to ensure that Proxmox and it’s host is fully up to date of course. Then, the project is to download and install a script that will work digital voodoo and invoke the HomeAssistant.
I do not normally trust magick script but in this case it seems the community itself recommends it. However, due it seems that due to differences in Proxmox7, the current version, and Proxmox6, the general-use script to stand up the Home Assistant service no longer works 100%.
So this blog is about how to install Home Assistant 2021.12 into a Proxmox 7 VM. Specifically using a community script that will be modified locally before being run to do the heavy-lifting and stand up the service.
Below is the command that used to be the recommended method of creating a VM in Proxmox. But it errors out now due to compression being used in some of the further files that get pulled down to create the VM. So instead of just piping the install.sh file to bash directly from download, there is some general-expression magic that needs to be run on the file. So do the download part of the above command.
bash -c "$(wget -qLO - https://github.com/whiskerz007/proxmox_hassos_install/raw/master/install.sh)"
Next make sure unzip is installed. It was on my system, but it’s a requirement so run an install cycle to make sure it’s available
apt install unzip
And get the file.
wget https://github.com/whiskerz007/proxmox_hassos_install/raw/master/install.sh
Now do the jiu-jitsu on the install script. This instruction fixes the errors in the install script and outputs the results to a temp file.
sed '/*"gz") gunzip -f $FILE;;/a\ \ *"zip") unzip -o $FILE;;' install.sh > temp.sh
Overwrite the original install script with the new, modified version.
mv temp.sh install.sh
Change the permissions to be executable by the owner.
chmod 755 install.sh
Finally, run the script.
./install.sh
It will do it’s thing and soon a new VM will be available in the your Proxmox dash area. Take your CYA snapshot, then fire up the Assistant!
Enjoy.
I really had to go over all the options to install Home Assistant. This software becomes such a huge portion of any homelab wherever there is a focus on smart home tech, it’s important to know what you are getting from the various methods to install this.
I vacillated for quite a while over how I should install it, and while I generally hate ‘magick scripts’, this is the recommended method by the community, so it’s fairly safe to use. And if you are curious you can always poke around in the script to assure yourself that there is nothing too jenky in it.
So, the end result of following these steps is a full VM running current Debian, that can still be used for anything else you might need. Inside of the VM is HassIO, a dockerized version of HomeAssistant along with a supervisor docker container to process the HomeAssistant API. This version of HomeAssistant can run nearly all of the add-ons
Enjoy!