You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Installation of Home Assistant on your FreeNAS."
5
+
date: 2017-04-06 17:00
6
+
sidebar: true
7
+
comments: false
8
+
sharing: true
9
+
footer: true
10
+
---
11
+
12
+
[Freenas](http://www.freenas.org) is a free and open-source network-attached storage (NAS) software based on FreeBSD and the OpenZFS file system. It is licensed under the terms of the BSD License and runs on commodity x86-64 hardware.
13
+
14
+
This has been tested on the FreeNAS 9.10. These instructions assume you already have a running and accessible jail. For more information on creating a jail follow the official FreeNAS 9.10.x documentation [HERE](https://doc.freenas.org/9.10/jails.html#adding-jails). Once you have the jail follow the steps below.
15
+
16
+
Install the necessary Python Packages.
17
+
18
+
```bash
19
+
# pkg update
20
+
# pkg upgrade
21
+
# pkg install python35
22
+
# pkg install py35-sqlite3
23
+
# python3.5 -m ensurepip
24
+
```
25
+
26
+
Install Home Assistant itself.
27
+
28
+
```bash
29
+
# pip3 install homeassistant
30
+
```
31
+
32
+
Finally start Home Assistant.
33
+
34
+
```bash
35
+
# hass --open-ui
36
+
```
37
+
38
+
Some suggestions on using a tmux to keep it running can be found in the FreeNAS forums [HERE](https://forums.freenas.org/index.php?threads/how-to-home-assistant-in-a-jail-tested-on-9-10.50371/)
0 commit comments