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 | |
echo "deb http://deb.debian.org/debian experimental main" >> /etc/apt/sources.list && apt update && apt -t experimental install linux-image-cloud-amd64 |
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 |