Skip to content

Instantly share code, notes, and snippets.

@allanchen2019
Last active April 2, 2022 03:59
Show Gist options
  • Select an option

  • Save allanchen2019/cf2de20a8f9a12dae7a7c868f9b4b18b to your computer and use it in GitHub Desktop.

Select an option

Save allanchen2019/cf2de20a8f9a12dae7a7c868f9b4b18b to your computer and use it in GitHub Desktop.
Home Assistant install script for ARM64
#!/bin/bash
####install homeassistant supervised on armbian platform####
apt update && apt install jq wget curl udisks2 libglib2.0-bin network-manager dbus -y
curl -fsSL get.docker.com | sh
wget https://github.com/home-assistant/os-agent/releases/download/1.2.2/os-agent_1.2.2_linux_aarch64.deb
dpkg -i os-agent_1.2.2_linux_aarch64.deb
gdbus introspect --system --dest io.hass.os --object-path /io/hass/os
apt install apparmor
wget https://github.com/home-assistant/supervised-installer/releases/latest/download/homeassistant-supervised.deb
dpkg -i homeassistant-supervised.deb
journalctl -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment