TV BOX installation (ARM) not re-starting

Hello , I managed to install HA Core on ARMBIAN , on a Chinesse TV BOX quad Core 1gb ram 8GB rom .with last Python 3.9 ver .
HA Core it is installed on EMMC not SD card

However I can’t achieve to make it auto start (Boot) . Any hint ?

If I understood correctly, you need a way to start HA Core on boot.
The answer is, create systemd service in /etc/systemd/system
and activate it via systemctl.
Try googling, there are lot of howtos about.

Below is mine systemd unit:

igor@hass:~$ cat /etc/systemd/system/[email protected]
[Unit]
Description=Home Assistant
#After=network-online.target
#After=zigbee2mqtt.service
#Requires=zigbee2mqtt.service
After=mosquitto.service
Requires=mosquitto.service

[Service]
Type=simple
User=%i
ExecStartPre=/bin/sleep 20
ExecStart=/srv/homeassistant/bin/hass -c “/home/%i/.homeassistant”
Restart=always

[Install]
WantedBy=multi-user.target

1 Like