I’m trying to install home assistant on docker on Debian. But every time I run curl -sL "https://raw.githubusercontent.com/Kanga-Who/home-assistant/master/supervised-installer.sh" | bash -s
I get this: [error] missing: apparmor. I could not find any matching topic on that. Also, my every post about it on Facebook or StackOverflow dies… Please help me!!
I encountered the same problem. By default on this debian version, when you su as root, it doesn’t add /usr/sbin in the path and it makes the script fail.
as root, try:
Hi,
You login as root from a strandard user with the command “su”. When you do that, you become superutilisator, but with your standard user env variables. And of course this user doesn’t have /usr/sbin in his path.
The good way to login as root is to use the command “su -”, it will takes root env variables, no need to do the export.