8.8 KiB
layout, title, description, date, sidebar, comments, sharing, footer
layout | title | description | date | sidebar | comments | sharing | footer |
---|---|---|---|---|---|---|---|
page | Installing Hass.io | Instructions on how to install Hass.io. | 2017-04-30 13:28 | true | false | true | true |
The following will take you through the steps required to install Hass.io.
-
Download the appropriate install option:
-
As an image for your device:
- Raspberry Pi Zero (not recommended for more than testing)
- Raspberry Pi Zero W (not recommended for more than testing)
- Raspberry Pi 1 Model B (not recommended for more than testing)
- Raspberry Pi 2 Model B
- Raspberry Pi 3 Model B and B+ 32bit (recommended)
- Raspberry Pi 3 Model B and B+ 64bit
- Tinkerboard
- Odroid-C2
- Odroid-XU4
- OrangePi-Prime
- Intel-Nuc
-
As a virtual appliance:
-
-
Install Hass.io:
- Flash the downloaded image to an SD card using balenaEtcher. If using a Pi we recommend at least a 32 GB SD card to avoid running out of space. On Virtual machine platforms, provide at least 32 GB of disk space for the VM.
- Load the appliance image into your virtual machine software. Choose 64-bit Linux and UEFI boot.
-
Optional - set up the WiFi or static IP. There are two possible places for that:
- On a blank USB stick with Fat32 partition (partition label: "CONFIG"), while in / directory, create
network/my-network
file - or on Hassio SD card first, bootable partition (might not be auto mounted in Linux) create
CONFIG/network/my-network
file For the content of this file follow the HassOS howto.
-
For image-based installs insert the SD card (and optional USB stick) into the device.
-
Turn on your device or virtual appliance. On first boot, it downloads the latest version of Home Assistant which takes around 20 minutes (slower/faster depending on the platform and your Internet connection).
-
You will be able to reach your installation at http://hassio.local:8123 (if your router supports mDNS, otherwise see below).
-
Enable either the Samba add-on or the SSH add-on to manage your configuration in
/config/
(From the UI choose Hass.io which is located in the sidebar).
If your router doesn't support mDNS, then you'll have to use the IP address of your Pi instead of `hassio.local`. For example, `http://192.168.0.9:8123`. You should be able to find the IP address of your Pi from the admin interface of your router.
If you are using a Raspberry Pi please remember to ensure you're using an [appropriate power supply][pi-power] with your Pi. Mobile chargers may not be suitable since some were only designed to provide just enough power to the device it was designed for by the manufacturer. **Do not** try to power the Pi from the USB port on a TV, computer, or similar.
Now you can configure your install.
{% linkable_title Migrating from a non-Hass.io install %}
If you copy over your existing Home Assistant configuration, make sure to enable the Hass.io panel by adding either discovery:
or hassio:
to your configuration.
{% linkable_title Updating a Hass.io installation %}
Best practice for updating a Hass.io installation:
- Backup your installation, using the snapshot functionality Hass.io offers.
- Check the release notes for breaking changes on Home Assistant release notes. Be sure to check all release notes between the version you are running and the one you are upgrading to. Use the search function in your browser (
CTRL + f
) and search for Breaking Changes. - Check your configuration using the Check Home Assistant configuration add-on.
- If the check passes, you can safely update. If not, update your configuration accordingly.
- Select Dashboard from the Hass.io menu, and then select Update.
{% linkable_title Run a specific version on Hass.io %}
SSH to your Hass.io system, or connect to the console, and run:
hassio ha update --version=0.XX.X
{% linkable_title Run the beta version on Hass.io %}
If you would like to test next release before anyone else, you can install the beta version released every two weeks:
- Backup your installation, using the snapshot functionality Hass.io offers.
- Check the RC release notes for breaking changes on Home Assistant release notes. Be sure to check all release notes between the version you are running and the one you are upgrading to. Use the search function in your browser (
CTRL + f
) and search for Breaking Changes. - Select System from the Hass.io menu, then select Join Beta Channel under Hass.io supervisor, then select Reload.
- Select Dashboard from the Hass.io menu, and then select Update.
{% linkable_title Alternative: install on generic Linux server %}
For advanced users, it is also possible to try Hass.io on your Linux server or inside a virtual machine. Examples given here are tested on Ubuntu, but the instructions should work as a guideline for installing on other Linux distrubutions.
This is the list of packages you need to have available on your system that will run Hass.io if you are using Debian/Ubuntu:
- apparmor-utils
- apt-transport-https
- avahi-daemon
- ca-certificates
- curl
- dbus
- jq
- network-manager
- socat
- software-properties-common
You also need to have Docker-CE installed. There are well-documented procedures for installing Docker on Ubuntu at Docker.com, you can find installation steps for your Linux distribution in the menu on the left.
Some distributions, like Ubuntu, have a `docker.io` package available. Using that packages will cause issues! Be sure to install the official Docker-CE from the above listed URL.
To perform the Hass.io installation, run the following commands:
sudo -i
apt-get install software-properties-common
add-apt-repository universe
apt-get update
apt-get install -y apparmor-utils apt-transport-https avahi-daemon ca-certificates curl dbus jq network-manager socat
curl -fsSL get.docker.com | sh
curl -sL "https://raw.githubusercontent.com/home-assistant/hassio-installer/master/hassio_install.sh" | bash -s
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.
A detailed guide about running Hass.io as a virtual machine is available in the blog.