Running HomeBridge on a Raspberry Pi

Introduction

Finding your Pi

Basic setup preparations

Install C++14 (Skip if this part if you are on Raspbian Jessie)

Install Node

Node.js manual install

Node.js package manager (apt-get) install

Node.js binaries install

Install Avahi and other Dependencies

Install Homebridge and dependencies

Proceed as Usual

Running Homebridge on Bootup

Running Homebridge on Bootup (systemd)

Configuration

Notes

Running Homebridge on Bootup (init.d)

Running Homebridge on Boot (/etc/rc.local) using Screen

Introduction

Running HomeBridge on a Raspberry Pi is straightforward. These instructions have been tested on a Raspberry Pi 2 with default Raspbian OS installed via NOOBS, and a Raspberry Pi 3 withRaspbian Jessie Lite.

For help installing an operating system like NOOBS on your Pi, check theofficial Raspberry Pi documentation.

For a video (in English), checkthisout.

Finding your Pi

After you install the operating system and connect your Pi to your network (and into power), you'll need to locate it so you cansshinto it and run some commands.

The default "Raspbian" OS will automatically broadcast its presence on your network under the mDNS name "raspberrypi". If you are using Mac or Linux, you can reach your Pi easily:

ssh pi@raspberrypi.local

Note that in SSH is disabled by default in recent version of Raspbian;see this page for instructions to re-enable it.

The default username for Raspbian ispiand the password israspberry.

If you have a different OS installed on your Pi or you can't find it viapi@raspberrypi.localthen you can try connecting to your home router by pointing your web browser at somewhere likehttp://192.168.0.1,http://192.168.1.1,http://10.1.1.1etc. (this depends on the router you're using and your network setup). Once you are logged in, you can usually find a list of devices connected to your network under "DHCP".

Windows does not supportsshon the command line, but you can use a free SSH client likePuttyto connect to your Pi.

Basic setup preparations

Once you're logged into your Pi, you should begin by updating the default system packages (note that these commands may be different if you are not running Raspbian OS).

sudo apt-get update

sudo apt-get upgrade

For OSMC or other stripped down Raspberry OS, you may need to install git and make

sudo apt-get install git make

Install C++14 (Skip this part if you are on Raspbian Jessie)

If you are running a version of the Raspbian OS based on Debian Wheezy, it comes with a C++ compiler that is too old for some of the packages Homebridge requires. You'll need tofollow these instructionsto install an updated version of the C++14 compiler.

You should be able to type:

>g++-4.9 -v...gcc version 4.9.2 (Raspbian 4.9.2-10)

Now you have the needed compiler, but it is not yet set to be thedefaultcompiler. You can fix that usingthe instructions here.

In my case I simply did this:

sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 60 --slave /usr/bin/g++ g++ /usr/bin/g++-4.9

sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.6 40 --slave /usr/bin/g++ g++ /usr/bin/g++-4.7

You should be able to now type:

>g++ -v...gcc version 4.9.2 (Raspbian 4.9.2-10)

For OSMC or other stripped down Raspberry OS, you may need to install g++

sudo apt-get install g++

Install Node

Starting with version 4.0.0, NodeJS now supports ARM-based platforms like Raspberry Pi by default.

Node.js package manager install (Easiest, Preferred)

If you are running a newish Raspberry Pi with an ARMv7 chip or better, you can install NodeJS using their apt-get repository.Follow the instructions here.

Example:

curl -sL https://deb.nodesource.com/setup_7.x|sudo -E bash -sudo apt-get install -y nodejs

To check what chip your Raspberry Pi has, type:

uname -a

The response will look something like:

Linux raspberrypi 4.4.50-v7+ 970 SMP Mon Feb 20 19:18:29 GMT 2017 armv7l GNU/Linux

Notice thearmv7lwhich indicates that this method will work.

Node.js binaries install

If you have an older ARM chip, you can grab Node binaries forarmv6fromhere.

Example:

wget https://nodejs.org/dist/v6.9.5/node-v6.9.5-linux-armv6l.tar.xztar xJvf node-v6.9.5-linux-armv6l.tar.xzsudo mkdir -p /opt/nodesudo mv node-v6.9.5-linux-armv6l/*/opt/node/sudo update-alternatives --install"/usr/bin/node""node""/opt/node/bin/node"1sudo update-alternatives --install"/usr/bin/npm""npm""/opt/node/bin/npm"1

Node.js manual install

To manually install Node.js you can follow either of these guides:

Installing Node.js v4.0.0 on a Raspberry Pi (All Models).

Installing Node.js on a Raspberry Pi 3

Following those instructions explicitly will install version 4.0.0. There are many new versions published since then; to install the latest version (or any other version, homebridge now requires a minimal nodejs version of v5.10.0), modify those instructions with the appropriate directory in thenodejs.org repository.

Install Avahi and other Dependencies

This is required by themdnspackage inHAP-NodeJSlibrary.

sudo apt-get install libavahi-compat-libdnssd-dev

Proceed as Usual

Now you can simply follow the instructions in theREADMEto install HomeBridge and start it up.

Alternate Installation (Untested)

If the "proceed as usual" section above didn't work for you, you might try these instructions which another user posted (but I have not verified because the simplenpm install -g homebridgeworked for me):

Only try these if normal way doesn't work!

sudo npm install -g --unsafe-perm homebridge hap-nodejs node-gypcd/usr/local/lib/node_modules/homebridge/sudo npm install --unsafe-perm bignumcd/usr/local/lib/node_modules/hap-nodejs/node_modules/mdnssudo node-gyp BUILDTYPE=Release rebuild

(note that/usr/local/libshould be replaced with/usr/lib/if you installed node using apt-get method above or with/opt/node/lib/if binary method used)

Running Homebridge on Bootup

Note that you should first make sure you can successfully run HomeBridge manually as described in the mainREADME

If you are new to Linux and the Raspberry Pi, it is recommended you read the instructions for all three methods before implementing your chosen method.

Running Homebridge on Bootup (systemd)

Follow thisGuide

On newer Raspberry Pi and Debian systems (Jessie +), managing of services withinit.dis (transparently) replaced withsystemd. If you wish to usesystemdfor running Homebridge on boot, you can find instructions in a Gist underjohannrichard/homebridge. As you can see, the service definition is much shorter than a comparable init.d script.

Download the two files and placehomebridgeunder/etc/defaultandhomebridge.serviceunder/etc/systemd/systemon your Raspberry Pi.

Configuration

In order to use the systemd service as is, the following folders and user have to exists:

A system user namedhomebridge. You can easily create this user withuseradd --system homebridgeor choose a different name

A directory called/var/lib/homebridge, writable by the user created above, and a correspondingconfig.jsonfile in that directory. Homebridge by default looks for its configuration in/home//.homebridge. This is unsuitable for services and the-U /var/lib/homebridgeflag ensures the config is read from a different place.

Then Enable and run the service (first time) with the following commands:

systemctl daemon-reload

systemctl enable homebridge

systemctl start homebridge

You can check the status of the service by calling

systemctl status homebridge

On subsequent reboots, it should start automatically, if not, use thejournalctl -u homebridgeto check the error cause.

Notes

The service will restart after 10 seconds if it fails for any reason (or if you kill it for example withkill -s SIGSEGV )

You might also try the tips in thisTutorial.

Running Homebridge on Bootup (init.d)

If you would like your Pi to start up Homebridge automatically on reboot, you will need to install an "init script". This freeinit script templateis a great place to start.

For example, first go to theraw template fileand select the whole page and copy it to your clipboard. Then connect to your pi:

ssh pi@raspberrypi.local

sudo nano /etc/init.d/homebridge

[paste clipboard contents]

Now you'll need to modify the top of the file. Here's an example:

#!/bin/sh### BEGIN INIT INFO#Provides: homebridge#Required-Start:    $network $remote_fs $syslog#Required-Stop:    $remote_fs $syslog#Default-Start:    2 3 4 5#Default-Stop:      0 1 6#Short-Description: Start daemon at boot time#Description:      Enable service provided by daemon.### END INIT INFOdir="/home/pi"cmd="DEBUG=* /usr/local/bin/homebridge"user="pi"

This assumes you have installed Homebridge globally viasudo npm install -g homebridge.

Now type CTRL+o to save, then enter, then CTRL+x to exit. Now change the file permissions and "install" the script:

sudo chmod 755 /etc/init.d/homebridge

sudo update-rc.d homebridge defaults

It should now run when your Pi reboots. You can also start it up manually like this:

sudo /etc/init.d/homebridge start

To view the running logs, you cantailthe output log or error log:

tail -f /var/log/homebridge.log

tail -f /var/log/homebridge.err

Running Homebridge on Boot (/etc/rc.local) using Screen

If you would like your Pi to start up HomeBridge automatically in a Screen session on reboot, you need to install Screen and edit the Pi's/etc/rc.localfile.

Install Screen

sudo apt-get install screen

Edit/etc/rc.local

sudo nano /etc/rc.local

Add this line before theexit 0line:

su -c"screen -dmS homebridge homebridge"-s /bin/sh pi

Hit Ctrl+X, Y to save and exit.

Usingrc.localis similar to adding things to your Login items on macOS or putting things in your Startup folder on Windows. The command is run once when you boot the Pi.

The example above will open HomeBridge using Screen. Screen acts like a separate terminal session that is run on the server rather than on your local computer. The advantage of this is that you can disconnect from the server without disrupting whatever was running in the Screen session. Typically when you open a terminal session session from one computer to another, when you exit (or get disconnected) everything running in the session at that time would be stopped (read more here:https://www.rackaid.com/blog/linux-screen-tutorial-and-how-to/).

Unless you are familiar with Screen or have a specific reason for using Screen, it is recommended that you set up HomeBridge as a Service usingsystemdorinit.d. If running Jessie or above then ideallysystemd(especially if you are new to Linux)

Whilst it would get HomeBridge running on boot, using Screen does add an extra layer of complexity. Using a Service is considered the "correct" way and has other advantages notably self restarting after a fail.

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 158,117评论 4 360
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 66,963评论 1 290
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 107,897评论 0 240
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 43,805评论 0 203
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 52,208评论 3 286
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 40,535评论 1 216
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 31,797评论 2 311
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 30,493评论 0 197
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 34,215评论 1 241
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 30,477评论 2 244
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 31,988评论 1 258
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 28,325评论 2 252
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 32,971评论 3 235
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 26,055评论 0 8
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 26,807评论 0 194
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 35,544评论 2 271
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 35,455评论 2 266

推荐阅读更多精彩内容