# Raspberry Pi

Because of its low price, its small form factor and the low energy consumption, the Raspberry Pi is a quite popular platform for openHAB. It is favored amongst existing users and a recommended choice for newcomers.

Raspberry Pi 2 Model B

If you want to learn more about the possibilities of the Raspberry Pi and Linux in general, many tutorials can be found on the internet. These including the official raspberrypi.org help articles or the in-detail articles at eLinux.org.

Recommendations for a "headless" hardware setup:

We are proud to provide a preconfigured image for the Raspberry Pi, with the latest build of openHAB and many useful software components (like Samba, Grafana or Mosquitto) as optional setup steps. The image provided by the openHABian projects is based on Raspbian and under constant improvement.

Check out more details about openHABian, the hassle-free openHAB setup.

# Manual Setup

If you want or need to set up openHAB on a Raspberry Pi by yourself, please follow these recommendations. For the beginning, we recommend to download and install the latest Raspbian SD card image. You may choose the "Lite" version.

Attention: As of the November 2016 release, Raspbian has the SSH server disabled by default. You will have to enable it manually. For headless setup, SSH can be enabled by placing a file named "ssh", without any extension, onto the boot partition of the SD card.

# Connecting:

Get your SD card and network cable plugged in and power up. Booting up takes up to 10 minutes. To connect with an SSH client (like Putty), you need to know the IP address or hostname of your device. A standard Raspbian setup should be reachable either by the hostname "raspberrypi" or though the local domain name "raspberrypi.local". If you are not able to connect, check your routers web frontend for newly connected devices.

# First Steps:

Connected via SSH, execute the Raspbian configuration menu by running sudo raspi-config. Go through the following steps:

  • Expand the file system
  • Change your password
  • (Change the host name if you wish, e.g. "openhabpi")
  • From the advanced menu, change the memory split for the GPU to "16"
  • Restart

As a good practice, run a full upgrade and install packages you like or need (a set of helpful packages is given as an example):

sudo apt-get update
sudo apt-get upgrade

sudo apt-get install screen mc vim git htop

Note on Java: Raspbian in the latest full version already includes Oracle Java 11. However, at the time of this writing, the installed revision is lower than the recommended. Raspbian Lite comes without Java to begin with.

# Manual setup of Zulu 11

The following steps refer specifically to Raspberry Pi devices. For a more general overview. please refer to the Linux article for instructions on how to install the latest Java 11 revision.

  1. create a folder for Zulu 11 and make it the current folder. For instance, /opt/jdk. You can use the commands
sudo mkdir /opt/jdk
cd /opt/jdk
  1. verify the architecture of your device. You perform this issuing the command:
dpkg --print-architecture

this will show whether you need files for Soft Float (armsf) or Hard Float (armhf) . Raspberry Pi 4 runs on ARM32-bit HF architecture (armhf), for instance.

Now, to install Zulu 11, you need to download and install a tar.gz package for your architecture following the steps described below (armhf architecture assumed for reference):

  1. Download the latest Zulu 11 build from the Azul download page - at the time of writing, it's zulu11.43.100-ca-jdk11.0.9.1-linux_aarch32hf. You can use the command:
sudo wget http://cdn.azul.com/zulu-embedded/bin/zulu11.43.100-ca-jdk11.0.9.1-linux_aarch32hf.tar.gz
  1. Extract the archive
sudo tar -xzvf -zulu11.43.100-ca-jdk11.0.9.1-linux_aarch32hf
  1. Install java and javac
sudo update-alternatives --install /usr/bin/java java /opt/jdk/zulu11.43.100-ca-jdk11.0.9.1-linux_aarch32hf/bin/java 1
sudo update-alternatives --install /usr/bin/javac javac /opt/jdk/zulu11.43.100-ca-jdk11.0.9.1-linux_aarch32hf/bin/javac 1
  1. change the current alternative:
sudo update-alternatives --config java

You'll be prompted to select the alternative, pick the zulu11 you installed.

  1. If you wish so, you can now delete the downloaded tar file
sudo rm *.tar.gz

# Installation:

Finally install openHAB on your Raspberry Pi, just as it is described in the openHAB on Linux article: