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` +