From 56a1ad935e2ab0dffe723eea8e23ce2f548c85e2 Mon Sep 17 00:00:00 2001 From: Kanga-Who Date: Fri, 26 Jul 2019 21:58:38 +1000 Subject: [PATCH] Extends Hass.io installation manual for generic Linux (#9972) * Update installation.markdown * Update installation.markdown * :pencil2: Extends machine type list * :pencil2: Minor tweak --- source/hassio/installation.markdown | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/source/hassio/installation.markdown b/source/hassio/installation.markdown index 9a316216e60..7cd33f94fc3 100644 --- a/source/hassio/installation.markdown +++ b/source/hassio/installation.markdown @@ -141,7 +141,7 @@ You also need to have Docker-CE installed. There are well-documented procedures -To perform the Hass.io installation on Ubuntu, run the following commands: +To prepare your machine for the Hass.io installation, run the following commands: ```bash sudo -i @@ -152,12 +152,30 @@ apt-get install -y apparmor-utils apt-transport-https avahi-daemon ca-certificat curl -fsSL get.docker.com | sh ``` -And to install Hass.io the one below. That one is used also for other distributions. +The following script will then install Hass.io on a variety of operating systems and machine types. ```bash curl -sL "https://raw.githubusercontent.com/home-assistant/hassio-installer/master/hassio_install.sh" | bash -s ``` +Some installation types require flags to identify the computer type, for example, when using a Raspberry Pi 3, the flag `-- -m raspberrypi3` is required. The install script would then look like this: + +```bash +curl -sL "https://raw.githubusercontent.com/home-assistant/hassio-installer/master/hassio_install.sh" | bash -s -- -m raspberrypi3 +``` + +#### Other machine types + + - `intel-nuc` + - `raspberrypi` + - `raspberrypi2` + - `raspberrypi3` + - `raspberrypi3-64` + - `odroid-c2` + - `odroid-cu2` + - `odriod-xu` + - `orangepi-prime` +
When you use this installation method, the core SSH add-on may not function correctly. If that happens, use the community SSH add-on. Some of the documentation might not work for your installation either.