Skip to content

Instantly share code, notes, and snippets.

@renatoccosta
renatoccosta / install-ha-opi5.adoc
Last active May 4, 2024 11:10
Install Home Assistant on OrangePi 5

Installing Home Assistant on OrangePi 5 Board

This tutorial will enable the use of Home Assistant on an OrangePi 5 board with the following characteristics:

  • OrangePi Debian OS

  • OS running on a SDCard

  • Home Assistant Supervised Instalation

The steps are a compilation with few modifications from instructions found over the web. Links are at the end.

@mihaiparv
mihaiparv / gist:834aa170f51690abfc3c
Last active August 29, 2015 14:17
Configuration management with Ansible - demo commands
# set-up authetication using the private key of the vagrant box
ssh-agent zsh
ssh-add .vagrant/machines/default/virtualbox/private_key
# test the connectivity / authentication
ansible all -i "192.168.120.10," -u vagrant -m ping
# ansible command line shell module basic usage
ansible all -i "192.168.120.10," -u vagrant -m shell -a "date"
ansible all -i "192.168.120.10," -u vagrant -m shell -a "uname -a"