Last active
April 2, 2022 03:59
-
-
Save allanchen2019/cf2de20a8f9a12dae7a7c868f9b4b18b to your computer and use it in GitHub Desktop.
Home Assistant install script for ARM64
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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