I just bought an Intel NUC and want to run HASSIO in a docker container. I know they want to deprecate hassio for linux systems which they put now on hold, but I want to install it anyway.
[Warning] This installer is no longer supported.
[Warning]
[Warning] Home Assistant might work today, tomorrow maybe not.
[Warning]
[Warning] If you want more control over your own system, run
[Warning] Home Assistant as a VM or run Home Assistant Core
[Warning] via a Docker container.
[Warning]
Please typ "not supported" to continue this installation
bash: line 17: syntax error near unexpected token `then'
How to continue the installation? If I typ “not support” it is saying: not supported: command not found
My linux skills are still noob so sorry about that!
[Warning] This installer is no longer supported.
[Warning]
[Warning] Home Assistant might work today, tomorrow maybe not.
[Warning]
[Warning] If you want more control over your own system, run
[Warning] Home Assistant as a VM or run Home Assistant Core
[Warning] via a Docker container.
[Warning]
Please typ "not supported" to continue this installation
bash: line 17: syntax error near unexpected token `then'
Damn, that is unfortunate. They have put it on hold for now because they got a lot of negetive reactions on their decision, hopefully they continue to support hassio on linux.
For now it might be better to install home assistant core and have the add-ons running in their own docker container.
@darryl12123 Looks like they changed the installer.sh script to show the not supported message, but an bug was introduced by doing that.
The deprecation is on hold, so this install should still work IMO. Maybe you can make a Github issue for this.
Edit: I think the code should be changed from
if [ "$x" != "not supported" ]
then
echo "OK, bye!"
exit 1
fi
to
if [ "$x" != "not supported" ]; then
echo "OK, bye!"
exit 1
fi
I have a NUC myself and run Proxmox on it. Then you can run multiple VMs from which HA is one of them. Also the snapshot function you then have is a real handy feature.
I would advise you to have a look at that first and then decide how to proceed.