l743
(Luke)
January 23, 2024, 6:47pm
1
I have Dell Wyse 5070 with OMV7 (Debian 12).
I try install Home Assistant Supervised using this tutorial: Installing Home Assistant Supervised using Debian 12
but I have one error: “Unsupported network_manager”
everything else works fine.
Previously I used this minimal configuration using docker compose: Alternative - Home Assistant and there were no problems, but I want install addons.
My spec:
root@home:~# cat /etc/os-release
PRETTY_NAME="Debian GNU/Linux 12 (bookworm)"
NAME="Debian GNU/Linux"
VERSION_ID="12"
VERSION="12 (bookworm)"
VERSION_CODENAME=bookworm
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"
root@home:~# uname -r
6.1.0-17-amd64
root@home:~# docker --version
Docker version 24.0.7, build afdd53b
root@home:~# systemd --version
systemd 252 (252.19-1~deb12u1)
+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified
root@home:~# nmcli --version
nmcli tool, version 1.42.4
In docker logs hassio_supervisor
I have:
24-01-23 19:44:14 WARNING (MainThread) [supervisor.resolution.evaluations.base] NetworkManager is not correctly configured (more-info: https://www.home-assistant.io/more-info/unsupported/network_manager)
I tried different docker version but with no result.
How to debug this problem?
A search in the Forum reveals others with same / similar ( experience )
Maybe this ?
Appreciate it, will definitely take a look. I am so close to having Supervisor sorted though, not that I need it for anything specific, but that I’ve put a bunch of time into automating cloud-init and home-assistant installation that it would seem like a waste to change now
ddaniel
(Daniel Dekovic)
January 23, 2024, 8:34pm
3
Basically easy.
Install deban 12 on your server.
Forget about supervised and go for docker installation. You can find start up guide here and here .
It’s not that difficult to do it. You just need to decide where your docker containers will live. Its usually in /opt directory.
This is mine homeassistant docker-compose.yml file with a portainer to get you going
services:
portainer:
container_name: portainer
image: portainer/portainer-ce:latest
restart: always
ports:
- "9000:9000/tcp"
- "9443:9443/tcp"
environment:
- TZ=Europe/Zagreb
volumes:
- /etc/localtime:/etc/localtime:ro
- /var/run/docker.sock:/var/run/docker.sock
- /opt/portainer:/data
homeassistant:
container_name: homeassistant
image: "ghcr.io/home-assistant/home-assistant:stable"
devices:
- /dev/ttyUSB0:/dev/ttyUSB0
environment:
- TZ=Europe/Zagreb
security_opt:
- no-new-privileges
volumes:
- /opt/homeassistant/config:/config
- /etc/localtime:/etc/localtime:ro
- /run/dbus:/run/dbus:ro
- /var/run/docker.sock:/var/run/docker.sock
restart: always
network_mode: host
Some things are left out but I think this is enough to keep you starting.
And, yes I forgot.
All addons are docker containers so you can have all addons and much more.