Nastra Richtig, der muss an sein. Zum einen weil ja die zweite Homebridge da läuft und iTunes mit der Mediathek. Bei mir ist das immer der Fall, daher gab es da von mir gar keinen Gedanken dran. ![]()
Beiträge von DJay
-
-
Ich nutze AirPlay auch schon immer. Sowohl vom iMac als auch vom iPhone oder iPad. Hab im Wohnzimmer den Apple TV 4 an der Home Theatre Anlage dran und gehe mit AirPlay und iTunes vom iMac den ganzen Tag da rauf. Kein Ruckeln, keine Abbrüche. Dazu noch einen Libratone ZIPP Classic mit AirPlay im Schlafzimmer und eine B&W mit AirPlay im Bad. Konnte nie nachvollziehen, dass immer mal wieder berichtet wird, dass AirPlay bei andern nicht laufen würde. Hier immer alles einwandfrei.
Das Thema AirPlay 2 habe ich gestern mal zum Anlass genommen und geschaut was heute eigentlich mit nem Homebridge Plugin geht. Hatte das nie so im Fokus.
Dabei bin ich auf homebridge-itunes gestoßen. Gleich neben der Homebridge auf der Raspi noch eine auf dem Mac installiert und das Plugin dazu.
Total geil. Jetzt kann ich Siri sagen, "Mach den Lautsprecher im Schlafzimmer an" oder, Bad oder Wohnzimmer und der Plugin greift über iTunes auf das AirPlay und schaltet die MultiRoom dazu oder wieder ab. Dazu lässt sich die Lautstärke auch noch über einen Schieberegler direkt in Eve steuern.
-
Dank Dir fürs kurze Antworten trotz unterwegs sein.
git und make war schon installiert.
Code
Alles anzeigenpi@raspberrypi:~ $ sudo apt-get install git make Paketlisten werden gelesen... Fertig Abhängigkeitsbaum wird aufgebaut. Statusinformationen werden eingelesen.... Fertig git ist schon die neueste Version. make ist schon die neueste Version. make wurde als manuell installiert festgelegt. Das folgende Paket wurde automatisch installiert und wird nicht mehr benötigt: rlwrap Verwenden Sie »apt-get autoremove«, um es zu entfernen. 0 aktualisiert, 0 neu installiert, 0 zu entfernen und 10 nicht aktualisiert. -
Guten morgen. Dank Dir.
Kann es sein, dass mit der Zeile etwas nicht stimmt?
su - pi -c "homebridge >> /var/log/homebridge.log 2>> /var/log/homebridge.err &"
Wenn ich copy/paste über die vorhandene Zeile mache, startet homebridge nach einem reboot nicht mehr.
Bei der Installation meiner plugins bin ich allerdings ein Stück weiter. Die meisten haben sich problemlos installieren lassen.
Allerdings habe ich bisher bei zwei Plugins nicht mehr die Möglichkeit diese zu installieren und bekomme eine Meldung die ich auch so noch nicht kenne und noch nie hatte. Bisher beim nest plugin und bei harmonyhub. Da wird auch wieder irgendwas auf root hingewiesen.

Was kann ich da tun und warum kommt das? Bin ja auch lernwillig.
Codepi@raspberrypi:~ $ sudo npm install -g homebridge-nest npm ERR! code 128 npm ERR! Command failed: /usr/bin/git clone -q https://github.com/kraigm/unofficial_nodejs_nest.git /root/.npm/_cacache/tmp/git-clone-2a2de14e npm ERR! fatal: Konnte führende Verzeichnisse von '/root/.npm/_cacache/tmp/git-clone-2a2de14e' nicht erstellen.: Keine Berechtigung npm ERR! npm ERR! A complete log of this run can be found in: npm ERR! /root/.npm/_logs/2017-06-02T06_55_41_956Z-debug.log -
tail -f /var/log/homebridge.log sollte es sein.
Doch wenn ich das nutze und im Anschluss in der App was an/ausschalte, wird nichts gezeigt. Nach der oben genannten Eingabe bleibt alles leer.
Naja.. daran soll's jetzt erstmal nicht liegen.
Nochmal Dankeschön.
-
Dank Dir det. Ich bin gerade ein bisschen panisch.

Ich versuch mich mal daran ein plugin nach dem anderen wieder zu installieren und entsprechend die config wieder aufzubauen.
Es ist aber schon richtig, wenn ich die installation der plugins alle mit sudo installiere und deinstalliere, als auch generell immer sudo vor befehle setze. Außer bei homebride wenn ich sie "manuell" starte.
Da ich hier aus der Sammlung noch nicht den richtigen Befehl gefunden habe... Wenn homebridge durch das script nach einem Systemstart läuft, wie kann ich das sehen, was sie gerade live macht? Also dass, was ich eigentlich sehen würde, wenn ich homebridge eingebe.
Und noch eine letzte Frage.. Wenn ich mir bei dem einen Plugin anschauen was homebridge macht, sieht das irgendwie anders aus als vor der ganzen Aktion und auch das Gerät schaltet anders.
Früher stand in homebridge sinngemäß so etwas wie "turned on. take to long. expected to be on".
Also das Gerät wurde geschaltet und der status wurde auf an gesetzt. Auch wenn das Gerät ein bisschen gebraucht hat und nicht sofort eine Rückmeldung gab.
Das passiert im Moment nicht mehr.
Wenn ich z.B. nun Siri sage "schalte Beam an" dann schaltet es zwar an, sagt aber "Dein Gerät reagiert nicht". Tatsächlich hat es aber geschaltet.
Dich in der App (Eve) muss ich gerade auch die Ansicht manuell aktualisieren, damit der switch tatsächlich den korrekten status dann anzeigt.
Code
Alles anzeigen[2017-6-1 19:40:18] [Beam] received:nam;BEAM [2017-6-1 19:40:18] [Beam] received:vol;0 [2017-6-1 19:40:18] [Beam] received:led;0 [2017-6-1 19:40:18] [Beam] received:ver;10 ip;192.168.178.69 mac;11:21:35:4E:FE:C0 [2017-6-1 19:40:23] [Beam] Beam on [2017-6-1 19:40:23] [Beam] Connection closed to beamIch dank Dir sehr det für Deine Geduld und die Infos.
-
det Dank Dir für Deine Rückmeldung.
Hier das Ergebnis aussudo cat /etc/init.d/homebridge
Code
Alles anzeigenpi@raspberrypi:~ $ sudo cat /etc/init.d/homebridge #!/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 for homebridge # Description: Enable service provided by daemon. ### END INIT INFO export PATH=$PATH:/usr/local/bin export NODE_PATH=$NODE_PATH:/usr/local/lib/node_modules PID=`pidof homebridge` case "$1" in start) if ps -p $PID > /dev/null 2>&1; then echo "Homebridge is already running" else su - pi -c "homebridge > /dev/null 2>&1 &" echo "Homebridge starting" $0 status fi ;; stop) if ! ps -p $PID > /dev/null 2>&1; then echo "Homebridge is not running" else kill $PID echo "Homebridge closed" fi ;; restart) if ! ps -p $PID > /dev/null 2>&1; then $0 start else $0 stop $0 start fi ;; status) if ps -p $PID > /dev/null 2>&1; then echo "Homebridge is running PID $PID" else echo "Homebridge is not running" fi ;; *) echo "Usage: $0 {start|stop|status|restart}" exit 1 ;; esac exit 0Jetzt hab ich alle Plugins komplett deinstalliert und auch homebridge. Alles gelöscht.
Beim Start sudo homebridge sah erstmal alles super aus. Da ich bewusst noch keine config.json hinterlegt hatte, hat er das auch angezeigt, dass die unter /home/pi/.homebridge fehlt. Dann eine leere config.json ohne accessories und platform rein und auch das hat geklappt. Meine Pin, wie in der config hinterlegt wurde angezeigt.
Dann das erste plugin installiert sudo npm i homebridge-beam@latest -g config.json um den einen Eintrag in accessories ergänzt und sudo homebridge gestartet. Und gleich wird wieder angezeigt config.json (/root/.homebridge/config.json) not found und die default bin.
Macht der raspberry allerdings seinen stündlichen reboot so wie ich das hinterlegt habe, scheint es doch zu laufen.
Denn als ich gerade zum ersten mal Homebridge als Brücke in der Apple Home App hinterlegt habe und meine PIN eingegeben habe, hat er die genommen und auch das eine Gerät "Beam" ist drin.
Ich steh gerade völlig auf dem Schlauch.
Entschuldige.Bin nur total Banane, da bei mir ziemlich viele Geräte über Homebridge laufen (sollen/müssen). Hab mich ziemlich dran gewöhnt und nu is gerade alles dahin.

-
Hallo Community,
meine Homebridge ist eigentlich seit Monaten ganz gut gelaufen. Fragt nicht warum, auf einmal ist sie alle Nase lang gestoppt. Ich hab keine Ahnung.
Nicht schlimm dachte ich. Backup war ja gemacht, so dass ich auf einen Stand von vor ein paar Wochen zurück konnte.
Nachdem das erledigt war, lief die Homebridge aber noch immer nicht, was ich schon merkwürdig fand.
Also habe ich mal alle ein uninstall von allen Plugins gemacht, die config.json gelöscht und auch die Ordner accessories und persist.
Ich habe schon immer mit dem Ordner /home/pi/.homebridge in der die config.json und die beiden anderen Ordner lag.
Jetzt startet die Homebridge wieder, aber ich bekomme den Fehler angezeigt config.json (/root/.homebridge/config.json) not found.
Wieso nun auf einmal root? Mit root hab ich eigentlich gar nichts zu tun, da ich immer als pi angemeldet bin.
Irgendetwas habe ich mir leider sehr zerschossen.

Hat jemand einen Vorschlag für und eine Anleitung für mich, wie ich es wieder hin bekomme, dass Homebridge nicht in root sucht, sondern wie früher ich einfach meine config.json unter /home/pi/.homebridge bearbeiten kann.
Meine config.json ist erstmal leer, ohne accessories und plattforms und liegt auf /home/pi/.homebride. Was beim start mit sudo homebridgeschon komisch ist, es wird auch schon gar nicht die von mir in der config angegebene Pin angezeigt. Also sucht homebridge gar nicht mehr an dem Ort.
Vorab tausend Dank für eine Hilfe.
-
Ich bin jetzt erstmal nochmal ganz zurück mit meinem Backup, also Stand vor der Einrichtung des Dienstes wie oben beschrieben.
Code
Alles anzeigenpi@raspberrypi:~ $ sudo ls -al /etc/systemd/system/ insgesamt 56 drwxr-xr-x 13 root root 4096 Mai 15 15:59 . drwxr-xr-x 6 root root 4096 Mai 15 15:48 .. -rw-r--r-- 1 root root 1551 Sep 18 2015 [email protected] drwxr-xr-x 2 root root 4096 Jan 1 1970 bluetooth.target.wants lrwxrwxrwx 1 root root 37 Jan 1 1970 dbus-org.bluez.service -> /lib/systemd/system/bluetooth.service lrwxrwxrwx 1 root root 40 Jan 1 1970 dbus-org.freedesktop.Avahi.service -> /lib/systemd/system/avahi-daemon.service lrwxrwxrwx 1 root root 34 Jan 1 1970 dhcpcd5 -> /lib/systemd/system/dhcpcd.service drwxr-xr-x 2 root root 4096 Mai 27 2016 dhcpcd.service.d lrwxrwxrwx 1 root root 35 Jan 14 10:58 display-manager.service -> /lib/systemd/system/lightdm.service drwxr-xr-x 2 root root 4096 Jan 1 1970 getty.target.wants drwxr-xr-x 2 root root 4096 Jan 1 1970 [email protected] drwxr-xr-x 2 root root 4096 Jan 1 1970 halt.target.wants drwxr-xr-x 2 root root 4096 Sep 18 2016 multi-user.target.wants drwxr-xr-x 2 root root 4096 Jan 1 1970 poweroff.target.wants drwxr-xr-x 2 root root 4096 Jan 1 1970 rc-local.service.d drwxr-xr-x 2 root root 4096 Jan 1 1970 reboot.target.wants drwxr-xr-x 2 root root 4096 Jan 1 1970 sockets.target.wants lrwxrwxrwx 1 root root 31 Mai 27 2016 sshd.service -> /lib/systemd/system/ssh.service drwxr-xr-x 2 root root 4096 Jan 1 1970 sysinit.target.wants lrwxrwxrwx 1 root root 35 Jan 1 1970 syslog.service -> /lib/systemd/system/rsyslog.service pi@raspberrypi:~ $ sudo ls -al /etc/default/ insgesamt 124 drwxr-xr-x 3 root root 4096 Mai 15 15:59 . drwxr-xr-x 115 pi pi 4096 Jul 17 2013 .. -rw-r--r-- 1 root root 219 Apr 13 2015 avahi-daemon -rw-r--r-- 1 root root 845 Jul 28 2014 bluetooth -rw-r--r-- 1 root root 222 Apr 27 2014 bsdmainutils -rw-r--r-- 1 root root 276 Mai 27 2016 console-setup -rw-r--r-- 1 root root 549 Aug 23 2014 crda -rw-r--r-- 1 root root 955 Sep 5 2015 cron -rw-r--r-- 1 root root 297 Jul 21 2015 dbus -rw-r--r-- 1 root root 92 Apr 6 2015 devpts -rw-r--r-- 1 root root 84 Mär 5 2012 fake-hwclock -rw-r--r-- 1 root root 86 Apr 6 2015 halt -rw-r--r-- 1 root root 855 Nov 2 2008 hdparm -rw-r--r-- 1 root root 657 Mär 30 2015 hwclock drwxr-xr-x 2 root root 4096 Jan 1 1970 kdm.d -rw-r--r-- 1 root root 150 Mai 27 2016 keyboard -rw-r--r-- 1 root root 52 Sep 15 2016 locale -rw-r--r-- 1 root root 2019 Nov 15 2014 netatalk -rw-r--r-- 1 root root 306 Jun 21 2012 networking -rw-r--r-- 1 root root 793 Aug 13 2014 nfs-common -rw-r--r-- 1 root root 1756 Apr 2 2016 nss -rw-r--r-- 1 root root 15 Aug 4 2006 ntp -rw-r--r-- 1 root root 292 Apr 28 09:32 raspberrypi-kernel -rw-r--r-- 1 root root 620 Apr 6 2015 rcS -rw-r--r-- 1 root root 1768 Sep 30 2013 rsync -rw-r--r-- 1 root root 124 Dez 14 2015 rsyslog -rw-r--r-- 1 root root 133 Apr 14 2016 ssh -rw-r--r-- 1 root root 625 Nov 3 2013 timidity -rw-r--r-- 1 root root 1115 Apr 6 2015 tmpfs -rw-r--r-- 1 root root 548 Mai 10 2011 triggerhappy -rw-r--r-- 1 root root 1118 Mai 27 2016 useradd -
det Ich komm hier in dem Beitrag mal um die Ecke.
Deiner Anleitung oben bin ich gefolgt und das hat auch ohne irgend eine Fehlermeldung alles geklappt.
Allerdings bekomme ich jetzt Fehler im log und kann leider aufgrund meines noch sehr raren Wissens nichts damit anfangen. Die Eve/Home App zeigt, dass die Geräte nicht erreichbar sind.
Homebridge ist aber lt. Status running. Läuft wohl allerdings nicht durch aufgrund der Fehler die wohl im Log zu sehen sind
mit sudo journalctl -f -u homebridge Nur keine Ahnung was da noch nicht stimmt.
Danke nochmal für die Hilfe.Codepi@raspberrypi:~ $ sudo systemctl start homebridge pi@raspberrypi:~ $ sudo /etc/init.d/homebridge status Homebridge is running PID 5617Code
Alles anzeigenpi@raspberrypi:~ $ sudo journalctl -f -u homebridge -- Logs begin at So 2017-05-28 12:27:44 CEST. -- Mai 28 12:33:35 raspberrypi homebridge[3137]: [2017-5-28 12:33:35] --- Mai 28 12:33:35 raspberrypi homebridge[3137]: [2017-5-28 12:33:35] Loaded plugin: homebridge-broadlink-rm Mai 28 12:33:35 raspberrypi homebridge[3137]: [2017-5-28 12:33:35] Registering platform 'homebridge-broadlink-rm.BroadlinkRM' Mai 28 12:33:35 raspberrypi homebridge[3137]: [2017-5-28 12:33:35] --- Mai 28 12:33:35 raspberrypi homebridge[3137]: [2017-5-28 12:33:35] Loaded plugin: homebridge-cmdswitch2 Mai 28 12:33:35 raspberrypi homebridge[3137]: [2017-5-28 12:33:35] Registering platform 'homebridge-cmdswitch2.cmdSwitch2' Mai 28 12:33:35 raspberrypi homebridge[3137]: [2017-5-28 12:33:35] --- Mai 28 12:33:35 raspberrypi homebridge[3137]: [2017-5-28 12:33:35] Loaded plugin: homebridge-delay-switch Mai 28 12:33:35 raspberrypi homebridge[3137]: [2017-5-28 12:33:35] Registering accessory 'homebridge-delay-switch.DelaySwitch' Mai 28 12:33:35 raspberrypi homebridge[3137]: [2017-5-28 12:33:35] --- Mai 28 12:33:37 raspberrypi homebridge[3137]: [2017-5-28 12:33:37] Loaded plugin: homebridge-fritz Mai 28 12:33:37 raspberrypi homebridge[3137]: [2017-5-28 12:33:37] Registering platform 'homebridge-fritz.Fritz!Box' Mai 28 12:33:37 raspberrypi homebridge[3137]: [2017-5-28 12:33:37] --- Mai 28 12:33:39 raspberrypi homebridge[3137]: [2017-5-28 12:33:39] Loaded plugin: homebridge-harmonyhub Mai 28 12:33:39 raspberrypi homebridge[3137]: [2017-5-28 12:33:39] Registering platform 'homebridge-harmonyhub.HarmonyHub' Mai 28 12:33:39 raspberrypi homebridge[3137]: [2017-5-28 12:33:39] --- Mai 28 12:33:40 raspberrypi homebridge[3137]: [2017-5-28 12:33:40] Loaded plugin: homebridge-http Mai 28 12:33:40 raspberrypi homebridge[3137]: [2017-5-28 12:33:40] Registering accessory 'homebridge-http.Http' Mai 28 12:33:40 raspberrypi homebridge[3137]: [2017-5-28 12:33:40] --- Mai 28 12:33:41 raspberrypi homebridge[3137]: [2017-5-28 12:33:41] Loaded plugin: homebridge-hue Mai 28 12:33:41 raspberrypi homebridge[3137]: [2017-5-28 12:33:41] Registering platform 'homebridge-hue.Hue' Mai 28 12:33:41 raspberrypi homebridge[3137]: [2017-5-28 12:33:41] --- Mai 28 12:33:42 raspberrypi homebridge[3137]: [2017-5-28 12:33:42] Loaded plugin: homebridge-ifttt Mai 28 12:33:42 raspberrypi homebridge[3137]: [2017-5-28 12:33:42] Registering platform 'homebridge-ifttt.IFTTT' Mai 28 12:33:42 raspberrypi homebridge[3137]: [2017-5-28 12:33:42] --- Mai 28 12:33:43 raspberrypi homebridge[3137]: [2017-5-28 12:33:43] Loaded plugin: homebridge-nest Mai 28 12:33:43 raspberrypi homebridge[3137]: [2017-5-28 12:33:43] Registering platform 'homebridge-nest.Nest' Mai 28 12:33:43 raspberrypi homebridge[3137]: [2017-5-28 12:33:43] --- Mai 28 12:33:44 raspberrypi homebridge[3137]: [2017-5-28 12:33:44] Loaded plugin: homebridge-netatmo Mai 28 12:33:44 raspberrypi homebridge[3137]: [2017-5-28 12:33:44] Registering platform 'homebridge-netatmo.netatmo' Mai 28 12:33:44 raspberrypi homebridge[3137]: [2017-5-28 12:33:44] --- Mai 28 12:33:44 raspberrypi homebridge[3137]: [2017-5-28 12:33:44] Loaded plugin: homebridge-notification Mai 28 12:33:44 raspberrypi homebridge[3137]: [2017-5-28 12:33:44] Registering accessory 'homebridge-notifications.Notification' Mai 28 12:33:44 raspberrypi homebridge[3137]: [2017-5-28 12:33:44] --- Mai 28 12:33:45 raspberrypi homebridge[3137]: [2017-5-28 12:33:45] Loaded plugin: homebridge-people Mai 28 12:33:45 raspberrypi homebridge[3137]: [2017-5-28 12:33:45] Registering platform 'homebridge-people.People' Mai 28 12:33:45 raspberrypi homebridge[3137]: [2017-5-28 12:33:45] Registering accessory 'homebridge-people.PeopleAccessory' Mai 28 12:33:45 raspberrypi homebridge[3137]: [2017-5-28 12:33:45] Registering accessory 'homebridge-people.PeopleAllAccessory' Mai 28 12:33:45 raspberrypi homebridge[3137]: [2017-5-28 12:33:45] --- Mai 28 12:33:46 raspberrypi homebridge[3137]: [2017-5-28 12:33:46] Loaded plugin: homebridge-ssh Mai 28 12:33:46 raspberrypi homebridge[3137]: [2017-5-28 12:33:46] Registering accessory 'homebridge-ssh.SSH' Mai 28 12:33:46 raspberrypi homebridge[3137]: [2017-5-28 12:33:46] --- Mai 28 12:33:47 raspberrypi homebridge[3137]: [2017-5-28 12:33:47] Loaded plugin: homebridge-wemo Mai 28 12:33:47 raspberrypi homebridge[3137]: [2017-5-28 12:33:47] Registering accessory 'homebridge-wemo.WeMo' Mai 28 12:33:47 raspberrypi homebridge[3137]: [2017-5-28 12:33:47] --- Mai 28 12:33:48 raspberrypi homebridge[3137]: [2017-5-28 12:33:48] Loaded plugin: homebridge-zway Mai 28 12:33:48 raspberrypi homebridge[3137]: [2017-5-28 12:33:48] Registering accessory 'homebridge-zway.ZWayServer' Mai 28 12:33:48 raspberrypi homebridge[3137]: [2017-5-28 12:33:48] Registering platform 'homebridge-zway.ZWayServer' Mai 28 12:33:48 raspberrypi homebridge[3137]: [2017-5-28 12:33:48] --- Mai 28 12:33:48 raspberrypi homebridge[3137]: [2017-5-28 12:33:48] Loaded config.json with 16 accessories and 10 platforms. Mai 28 12:33:48 raspberrypi homebridge[3137]: [2017-5-28 12:33:48] --- Mai 28 12:33:48 raspberrypi homebridge[3137]: [2017-5-28 12:33:48] Loading 10 platforms... Mai 28 12:33:48 raspberrypi homebridge[3137]: [2017-5-28 12:33:48] Initializing People platform... Mai 28 12:33:48 raspberrypi homebridge[3137]: [2017-5-28 12:33:48] Initializing platform accessory 'Daniels iPhone'... Mai 28 12:33:48 raspberrypi homebridge[3137]: [2017-5-28 12:33:48] Initializing platform accessory 'Daniels Apple Watch'... Mai 28 12:33:48 raspberrypi homebridge[3137]: [2017-5-28 12:33:48] Initializing platform accessory 'Davids MacBook'... Mai 28 12:33:48 raspberrypi homebridge[3137]: [2017-5-28 12:33:48] Initializing platform accessory 'Davids iPhone'... Mai 28 12:33:48 raspberrypi homebridge[3137]: [2017-5-28 12:33:48] Initializing platform accessory 'Anyone'... Mai 28 12:33:48 raspberrypi homebridge[3137]: [2017-5-28 12:33:48] WebHook: Started server on port '51828'. Mai 28 12:33:48 raspberrypi homebridge[3137]: [2017-5-28 12:33:48] Initializing ZWayServer platform... Mai 28 12:33:48 raspberrypi homebridge[3137]: [2017-5-28 12:33:48] [Broadlink RM] Initializing BroadlinkRM platform... Mai 28 12:33:48 raspberrypi homebridge[3137]: /usr/local/lib/node_modules/homebridge-broadlink-rm/node_modules/mkdirp/index.js:90 Mai 28 12:33:48 raspberrypi homebridge[3137]: throw err0; Mai 28 12:33:48 raspberrypi homebridge[3137]: ^ Mai 28 12:33:48 raspberrypi homebridge[3137]: Error: EACCES: permission denied, mkdir '/home/homebridge' Mai 28 12:33:48 raspberrypi homebridge[3137]: at Object.fs.mkdirSync (fs.js:895:18) Mai 28 12:33:48 raspberrypi homebridge[3137]: at sync (/usr/local/lib/node_modules/homebridge-broadlink-rm/node_modules/mkdirp/index.js:71:13) Mai 28 12:33:48 raspberrypi homebridge[3137]: at sync (/usr/local/lib/node_modules/homebridge-broadlink-rm/node_modules/mkdirp/index.js:77:24) Mai 28 12:33:48 raspberrypi homebridge[3137]: at sync (/usr/local/lib/node_modules/homebridge-broadlink-rm/node_modules/mkdirp/index.js:77:24) Mai 28 12:33:48 raspberrypi homebridge[3137]: at Function.sync (/usr/local/lib/node_modules/homebridge-broadlink-rm/node_modules/mkdirp/index.js:77:24) Mai 28 12:33:48 raspberrypi homebridge[3137]: at LocalStorage.parseStorageDirSync (/usr/local/lib/node_modules/homebridge-broadlink-rm/node_modules/node-persist/src/local-storage.js:600:20) Mai 28 12:33:48 raspberrypi homebridge[3137]: at LocalStorage.initSync (/usr/local/lib/node_modules/homebridge-broadlink-rm/node_modules/node-persist/src/local-storage.js:141:14) Mai 28 12:33:48 raspberrypi homebridge[3137]: at Object.nodePersist.initSync (/usr/local/lib/node_modules/homebridge-broadlink-rm/node_modules/node-persist/src/node-persist.js:37:32) Mai 28 12:33:48 raspberrypi homebridge[3137]: at Object.init (/usr/local/lib/node_modules/homebridge-broadlink-rm/node_modules/homebridge-platform-helper/helpers/persistentState.js:10:15) Mai 28 12:33:48 raspberrypi homebridge[3137]: at BroadlinkRMPlatform.HomebridgePlatform (/usr/local/lib/node_modules/homebridge-broadlink-rm/node_modules/homebridge-platform-helper/platform.js:14:21) Mai 28 12:33:48 raspberrypi homebridge[3137]: at BroadlinkRMPlatform (/usr/local/lib/node_modules/homebridge-broadlink-rm/index.js:11:1) Mai 28 12:33:48 raspberrypi homebridge[3137]: at Server._loadPlatforms (/usr/local/lib/node_modules/homebridge/lib/server.js:294:32) Mai 28 12:33:48 raspberrypi homebridge[3137]: at Server.run (/usr/local/lib/node_modules/homebridge/lib/server.js:80:36) Mai 28 12:33:48 raspberrypi homebridge[3137]: at module.exports (/usr/local/lib/node_modules/homebridge/lib/cli.js:40:10) Mai 28 12:33:48 raspberrypi homebridge[3137]: at Object.<anonymous> (/usr/local/lib/node_modules/homebridge/bin/homebridge:17:22) Mai 28 12:33:48 raspberrypi homebridge[3137]: at Module._compile (module.js:571:32) Mai 28 12:33:48 raspberrypi homebridge[3137]: at Object.Module._extensions..js (module.js:580:10) Mai 28 12:33:48 raspberrypi homebridge[3137]: at Module.load (module.js:488:32) Mai 28 12:33:48 raspberrypi homebridge[3137]: at tryModuleLoad (module.js:447:12) Mai 28 12:33:48 raspberrypi homebridge[3137]: at Function.Module._load (module.js:439:3) Mai 28 12:33:48 raspberrypi systemd[1]: homebridge.service: main process exited, code=exited, status=1/FAILURE Mai 28 12:33:48 raspberrypi systemd[1]: Unit homebridge.service entered failed state. Mai 28 12:33:48 raspberrypi homebridge[3137]: at Module.runMain (module.js:605:10) Mai 28 12:33:48 raspberrypi homebridge[3137]: at run (bootstrap_node.js:427:7) Mai 28 12:33:48 raspberrypi homebridge[3137]: at startup (bootstrap_node.js:151:9) Mai 28 12:33:48 raspberrypi homebridge[3137]: at bootstrap_node.js:542:3 Mai 28 12:33:58 raspberrypi systemd[1]: homebridge.service holdoff time over, scheduling restart. Mai 28 12:33:59 raspberrypi systemd[1]: Stopping Node.js HomeKit Server... Mai 28 12:33:59 raspberrypi systemd[1]: Starting Node.js HomeKit Server... Mai 28 12:33:59 raspberrypi systemd[1]: Started Node.js HomeKit Server. Mai 28 12:33:59 raspberrypi homebridge[3269]: *** WARNING *** The program 'node' uses the Apple Bonjour compatibility layer of Avahi. Mai 28 12:33:59 raspberrypi node[3269]: *** WARNING *** The program 'node' uses the Apple Bonjour compatibility layer of Avahi. Mai 28 12:33:59 raspberrypi node[3269]: *** WARNING *** Please fix your application to use the native API of Avahi! Mai 28 12:33:59 raspberrypi node[3269]: *** WARNING *** For more information see <http://0pointer.de/avahi-compat?s=libdns_sd&e=node> Mai 28 12:33:59 raspberrypi node[3269]: *** WARNING *** The program 'node' called 'DNSServiceRegister()' which is not supported (or only supported partially) in the Apple Bonjour compatibility layer of Avahi. Mai 28 12:33:59 raspberrypi node[3269]: *** WARNING *** Please fix your application to use the native API of Avahi! Mai 28 12:33:59 raspberrypi node[3269]: *** WARNING *** For more information see <http://0pointer.de/avahi-compat?s=libdns_sd&e=node&f=DNSServiceRegister> Mai 28 12:33:59 raspberrypi homebridge[3269]: *** WARNING *** Please fix your application to use the native API of Avahi! Mai 28 12:33:59 raspberrypi homebridge[3269]: *** WARNING *** For more information see <http://0pointer.de/avahi-compat?s=libdns_sd&e=node> Mai 28 12:33:59 raspberrypi homebridge[3269]: *** WARNING *** The program 'node' called 'DNSServiceRegister()' which is not supported (or only supported partially) in the Apple Bonjour compatibility layer of Avahi. Mai 28 12:33:59 raspberrypi homebridge[3269]: *** WARNING *** Please fix your application to use the native API of Avahi! Mai 28 12:33:59 raspberrypi homebridge[3269]: *** WARNING *** For more information see <http://0pointer.de/avahi-compat?s=libdns_sd&e=node&f=DNSServiceRegister> Mai 28 12:34:02 raspberrypi homebridge[3269]: ???????????????????????????????????????????????????????????????? Mai 28 12:34:02 raspberrypi homebridge[3269]: ? npm update check failed ? Mai 28 12:34:02 raspberrypi homebridge[3269]: ? Try running with sudo or get access ? Mai 28 12:34:02 raspberrypi homebridge[3269]: ? to the local update config store via ? Mai 28 12:34:02 raspberrypi homebridge[3269]: ? sudo chown -R $USER:$(id -gn $USER) /home/homebridge/.config ? Mai 28 12:34:02 raspberrypi homebridge[3269]: ???????????????????????????????????????????????????????????????? Mai 28 12:34:02 raspberrypi homebridge[3269]: [2017-5-28 12:34:02] Loaded plugin: homebridge-beam Mai 28 12:34:02 raspberrypi homebridge[3269]: [2017-5-28 12:34:02] Registering accessory 'homebridge-beam.Beam' Mai 28 12:34:02 raspberrypi homebridge[3269]: [2017-5-28 12:34:02] --- Mai 28 12:34:02 raspberrypi homebridge[3269]: [2017-5-28 12:34:02] Loaded plugin: homebridge-broadlink-rm Mai 28 12:34:02 raspberrypi homebridge[3269]: [2017-5-28 12:34:02] Registering platform 'homebridge-broadlink-rm.BroadlinkRM' Mai 28 12:34:02 raspberrypi homebridge[3269]: [2017-5-28 12:34:02] --- Mai 28 12:34:02 raspberrypi homebridge[3269]: [2017-5-28 12:34:02] Loaded plugin: homebridge-cmdswitch2 Mai 28 12:34:02 raspberrypi homebridge[3269]: [2017-5-28 12:34:02] Registering platform 'homebridge-cmdswitch2.cmdSwitch2' Mai 28 12:34:02 raspberrypi homebridge[3269]: [2017-5-28 12:34:02] --- Mai 28 12:34:02 raspberrypi homebridge[3269]: [2017-5-28 12:34:02] Loaded plugin: homebridge-delay-switch Mai 28 12:34:02 raspberrypi homebridge[3269]: [2017-5-28 12:34:02] Registering accessory 'homebridge-delay-switch.DelaySwitch' Mai 28 12:34:02 raspberrypi homebridge[3269]: [2017-5-28 12:34:02] --- Mai 28 12:34:05 raspberrypi homebridge[3269]: [2017-5-28 12:34:05] Loaded plugin: homebridge-fritz Mai 28 12:34:05 raspberrypi homebridge[3269]: [2017-5-28 12:34:05] Registering platform 'homebridge-fritz.Fritz!Box' Mai 28 12:34:05 raspberrypi homebridge[3269]: [2017-5-28 12:34:05] --- Mai 28 12:34:06 raspberrypi homebridge[3269]: [2017-5-28 12:34:06] Loaded plugin: homebridge-harmonyhub Mai 28 12:34:06 raspberrypi homebridge[3269]: [2017-5-28 12:34:06] Registering platform 'homebridge-harmonyhub.HarmonyHub'Irgendetwas mit...
Code
Alles anzeigenMai 28 12:44:41 raspberrypi homebridge[4412]: [2017-5-28 12:44:41] [Broadlink RM] Initializing BroadlinkRM platform... Mai 28 12:44:41 raspberrypi homebridge[4412]: /usr/local/lib/node_modules/homebridge-broadlink-rm/node_modules/mkdirp/index.js:90 Mai 28 12:44:41 raspberrypi homebridge[4412]: throw err0; Mai 28 12:44:41 raspberrypi homebridge[4412]: ^ Mai 28 12:44:41 raspberrypi homebridge[4412]: Error: EACCES: permission denied, mkdir '/home/homebridge' Mai 28 12:44:41 raspberrypi homebridge[4412]: at Object.fs.mkdirSync (fs.js:895:18) Mai 28 12:44:41 raspberrypi homebridge[4412]: at sync (/usr/local/lib/node_modules/homebridge-broadlink-rm/node_modules/mkdirp/index.js:71:13) Mai 28 12:44:41 raspberrypi homebridge[4412]: at sync (/usr/local/lib/node_modules/homebridge-broadlink-rm/node_modules/mkdirp/index.js:77:24) Mai 28 12:44:41 raspberrypi homebridge[4412]: at sync (/usr/local/lib/node_modules/homebridge-broadlink-rm/node_modules/mkdirp/index.js:77:24) Mai 28 12:44:42 raspberrypi homebridge[4412]: at Function.sync (/usr/local/lib/node_modules/homebridge-broadlink-rm/node_modules/mkdirp/index.js:77:24) Mai 28 12:44:42 raspberrypi homebridge[4412]: at LocalStorage.parseStorageDirSync (/usr/local/lib/node_modules/homebridge-broadlink-rm/node_modules/node-persist/src/local-storage.js:600:20) Mai 28 12:44:42 raspberrypi homebridge[4412]: at LocalStorage.initSync (/usr/local/lib/node_modules/homebridge-broadlink-rm/node_modules/node-persist/src/local-storage.js:141:14) Mai 28 12:44:42 raspberrypi homebridge[4412]: at Object.nodePersist.initSync (/usr/local/lib/node_modules/homebridge-broadlink-rm/node_modules/node-persist/src/node-persist.js:37:32) Mai 28 12:44:42 raspberrypi homebridge[4412]: at Object.init (/usr/local/lib/node_modules/homebridge-broadlink-rm/node_modules/homebridge-platform-helper/helpers/persistentState.js:10:15) Mai 28 12:44:42 raspberrypi homebridge[4412]: at BroadlinkRMPlatform.HomebridgePlatform (/usr/local/lib/node_modules/homebridge-broadlink-rm/node_modules/homebridge-platform-helper/platform.js:14:21) Mai 28 12:44:42 raspberrypi homebridge[4412]: at BroadlinkRMPlatform (/usr/local/lib/node_modules/homebridge-broadlink-rm/index.js:11:1) Mai 28 12:44:42 raspberrypi homebridge[4412]: at Server._loadPlatforms (/usr/local/lib/node_modules/homebridge/lib/server.js:294:32) Mai 28 12:44:42 raspberrypi homebridge[4412]: at Server.run (/usr/local/lib/node_modules/homebridge/lib/server.js:80:36) Mai 28 12:44:42 raspberrypi homebridge[4412]: at module.exports (/usr/local/lib/node_modules/homebridge/lib/cli.js:40:10) Mai 28 12:44:42 raspberrypi homebridge[4412]: at Object.<anonymous> (/usr/local/lib/node_modules/homebridge/bin/homebridge:17:22) Mai 28 12:44:42 raspberrypi homebridge[4412]: at Module._compile (module.js:571:32) Mai 28 12:44:42 raspberrypi homebridge[4412]: at Object.Module._extensions..js (module.js:580:10) Mai 28 12:44:42 raspberrypi homebridge[4412]: at Module.load (module.js:488:32) Mai 28 12:44:42 raspberrypi homebridge[4412]: at tryModuleLoad (module.js:447:12) Mai 28 12:44:42 raspberrypi homebridge[4412]: at Function.Module._load (module.js:439:3) Mai 28 12:44:42 raspberrypi systemd[1]: homebridge.service: main process exited, code=exited, status=1/FAILURE Mai 28 12:44:42 raspberrypi systemd[1]: Unit homebridge.service entered failed state. Mai 28 12:44:42 raspberrypi homebridge[4412]: at Module.runMain (module.js:605:10) Mai 28 12:44:42 raspberrypi homebridge[4412]: at run (bootstrap_node.js:427:7) Mai 28 12:44:42 raspberrypi homebridge[4412]: at startup (bootstrap_node.js:151:9) Mai 28 12:44:42 raspberrypi homebridge[4412]: at bootstrap_node.js:542:3 Mai 28 12:44:52 raspberrypi systemd[1]: homebridge.service holdoff time over, scheduling restart. Mai 28 12:44:52 raspberrypi systemd[1]: Stopping Node.js HomeKit Server... Mai 28 12:44:52 raspberrypi systemd[1]: Starting Node.js HomeKit Server... Mai 28 12:44:52 raspberrypi systemd[1]: Started Node.js HomeKit Server. Mai 28 12:44:53 raspberrypi homebridge[4520]: *** WARNING *** The program 'node' uses the Apple Bonjour compatibility layer of Avahi. Mai 28 12:44:53 raspberrypi node[4520]: *** WARNING *** The program 'node' uses the Apple Bonjour compatibility layer of Avahi. Mai 28 12:44:53 raspberrypi node[4520]: *** WARNING *** Please fix your application to use the native API of Avahi! Mai 28 12:44:53 raspberrypi node[4520]: *** WARNING *** For more information see <http://0pointer.de/avahi-compat?s=libdns_sd&e=node> Mai 28 12:44:53 raspberrypi node[4520]: *** WARNING *** The program 'node' called 'DNSServiceRegister()' which is not supported (or only supported partially) in the Apple Bonjour compatibility layer of Avahi. Mai 28 12:44:53 raspberrypi node[4520]: *** WARNING *** Please fix your application to use the native API of Avahi! Mai 28 12:44:53 raspberrypi node[4520]: *** WARNING *** For more information see <http://0pointer.de/avahi-compat?s=libdns_sd&e=node&f=DNSServiceRegister> Mai 28 12:44:53 raspberrypi homebridge[4520]: *** WARNING *** Please fix your application to use the native API of Avahi! Mai 28 12:44:53 raspberrypi homebridge[4520]: *** WARNING *** For more information see <http://0pointer.de/avahi-compat?s=libdns_sd&e=node> Mai 28 12:44:53 raspberrypi homebridge[4520]: *** WARNING *** The program 'node' called 'DNSServiceRegister()' which is not supported (or only supported partially) in the Apple Bonjour compatibility layer of Avahi. Mai 28 12:44:53 raspberrypi homebridge[4520]: *** WARNING *** Please fix your application to use the native API of Avahi! Mai 28 12:44:53 raspberrypi homebridge[4520]: *** WARNING *** For more information see <http://0pointer.de/avahi-compat?s=libdns_sd&e=node&f=DNSServiceRegister>Und werfe ic BroadLink erstmal raus aus der config kommt die nächste Fehlermeldung zu iBrew.
Code
Alles anzeigenMai 28 13:14:45 raspberrypi homebridge[7613]: OSError: [Errno 13] Permission denied: '/home/homebridge' Mai 28 13:14:46 raspberrypi homebridge[7613]: [2017-5-28 13:14:46] Failed to determine Wasserkocher state. Mai 28 13:14:46 raspberrypi homebridge[7613]: [2017-5-28 13:14:46] Traceback (most recent call last): Mai 28 13:14:46 raspberrypi homebridge[7613]: File "/usr/local/bin/ibrew", line 22, in <module> Mai 28 13:14:46 raspberrypi homebridge[7613]: iBrewConsole().run(sys.argv[1:]) Mai 28 13:14:46 raspberrypi homebridge[7613]: File "/home/pi/iBrew/source/iBrewConsole.py", line 1273, in run Mai 28 13:14:46 raspberrypi homebridge[7613]: AppFolders.makeFolders() Mai 28 13:14:46 raspberrypi homebridge[7613]: File "/home/pi/iBrew/source/iBrewFolders.py", line 27, in makeFolders Mai 28 13:14:46 raspberrypi homebridge[7613]: make(AppFolders.logs()) Mai 28 13:14:46 raspberrypi homebridge[7613]: File "/home/pi/iBrew/source/iBrewFolders.py", line 26, in make Mai 28 13:14:46 raspberrypi homebridge[7613]: os.makedirs(folder) Mai 28 13:14:46 raspberrypi homebridge[7613]: File "/usr/lib/python2.7/os.py", line 150, in makedirs Mai 28 13:14:46 raspberrypi homebridge[7613]: makedirs(head, mode) Mai 28 13:14:46 raspberrypi homebridge[7613]: File "/usr/lib/python2.7/os.py", line 150, in makedirs Mai 28 13:14:46 raspberrypi homebridge[7613]: makedirs(head, mode) Mai 28 13:14:46 raspberrypi homebridge[7613]: File "/usr/lib/python2.7/os.py", line 157, in makedirs Mai 28 13:14:46 raspberrypi homebridge[7613]: mkdir(name, mode)Ich glaube ich habe mit mit der Umstellung keinen Gefallen getan.
Aber hab noch ein Backup und sollte somit im Zweifel wieder in die Ausgangsposition kommen. Schade, auch wenn die 10 sec. Handhabung super klingt. Aber alles in allem kenne ich mich dann doch derzeit noch zu wenig aus. 
-
det Dank Dir.
Das wirft wahrscheinlich auch schon meine nächste Frage auf, als was homebridge bei mir läuft? Lese immer was von root oder user.
Ich mach aber mal im anderen Beitrag weiter, da ich der Anleitung dort von Dir gefolgt bin.
Code
Alles anzeigenpi@raspberrypi:~ $ sudo cat /etc/default/homebridge cat: /etc/default/homebridge: Datei oder Verzeichnis nicht gefunden pi@raspberrypi:~ $ sudo cat /etc/systemd/system/homebridge.service cat: /etc/systemd/system/homebridge.service: Datei oder Verzeichnis nicht gefunden pi@raspberrypi:~ $ sudo ls -al /var/log/ insgesamt 30120 drwxr-xr-x 7 root root 4096 Mai 28 10:16 . drwxr-xr-x 12 501 80 4096 Feb 2 2016 .. -rw-r--r-- 1 root root 0 Mai 16 06:25 alternatives.log -rw-r--r-- 1 root root 3224 Mai 15 16:00 alternatives.log.1 -rw-r--r-- 1 root root 540 Jan 14 10:59 alternatives.log.2.gz -rw-r--r-- 1 root root 5350 Sep 27 2016 alternatives.log.3.gz drwxr-xr-x 2 root root 4096 Mai 13 06:25 apt -rw-r----- 1 root adm 12388 Mai 28 10:53 auth.log -rw-r----- 1 root adm 422109 Mai 28 06:25 auth.log.1 -rw-r----- 1 root adm 33709 Mai 22 06:25 auth.log.2.gz -rw-r----- 1 root adm 6013 Mai 14 06:25 auth.log.3.gz -rw-r----- 1 root adm 10816 Mai 13 06:25 auth.log.4.gz -rw-r--r-- 1 root root 74609 Mai 27 2016 bootstrap.log -rw------- 1 root utmp 1536 Mai 21 13:10 btmp -rw------- 1 root utmp 384 Mär 4 21:41 btmp.1 -rw-r----- 1 root adm 129568 Mai 28 10:52 daemon.log -rw-r----- 1 root adm 4796761 Mai 28 06:17 daemon.log.1 -rw-r----- 1 root adm 671056 Mai 22 06:21 daemon.log.2.gz -rw-r----- 1 root adm 103709 Mai 14 06:21 daemon.log.3.gz -rw-r----- 1 root adm 219928 Mai 13 06:21 daemon.log.4.gz -rw-r----- 1 root adm 7476 Mai 28 10:16 debug -rw-r----- 1 root adm 278175 Mai 28 06:16 debug.1 -rw-r----- 1 root adm 23808 Mai 22 06:16 debug.2.gz -rw-r----- 1 root adm 3756 Mai 14 06:16 debug.3.gz -rw-r----- 1 root adm 7039 Mai 13 06:16 debug.4.gz -rw-r----- 1 root adm 31 Mai 27 2016 dmesg -rw-r--r-- 1 root root 113595 Mai 15 16:00 dpkg.log -rw-r--r-- 1 root root 855 Mai 12 16:09 dpkg.log.1 -rw-r--r-- 1 root root 707 Feb 23 12:49 dpkg.log.2.gz -rw-r--r-- 1 root root 197 Feb 1 19:52 dpkg.log.3.gz -rw-r--r-- 1 root root 12369 Jan 14 10:59 dpkg.log.4.gz -rw-r--r-- 1 root root 497 Okt 31 2016 dpkg.log.5.gz -rw-r--r-- 1 root root 68964 Sep 27 2016 dpkg.log.6.gz -rw-r--r-- 1 root root 24024 Mai 27 2016 faillog -rw-r--r-- 1 root root 2358 Jan 14 10:33 fontconfig.log drwxr-xr-x 2 root root 4096 Jan 1 1970 fsck -rw-r--r-- 1 root root 686 Sep 16 2016 homebridge.err -rw-r--r-- 1 root root 0 Sep 16 2016 homebridge.log -rw-r----- 1 root adm 98901 Mai 28 10:17 kern.log -rw-r----- 1 root adm 3633439 Mai 28 06:17 kern.log.1 -rw-r----- 1 root adm 397832 Mai 22 06:17 kern.log.2.gz -rw-r----- 1 root adm 69250 Mai 14 06:16 kern.log.3.gz -rw-r----- 1 root adm 139050 Mai 13 06:16 kern.log.4.gz -rw-rw-r-- 1 root utmp 292292 Mai 28 10:52 lastlog drwx--x--x 2 root root 4096 Mai 28 10:16 lightdm -rw-r----- 1 root adm 105699 Mai 28 10:53 messages -rw-r----- 1 root adm 3927800 Mai 28 06:25 messages.1 -rw-r----- 1 root adm 536650 Mai 22 06:25 messages.2.gz -rw-r----- 1 root adm 149934 Mai 14 06:25 messages.3.gz -rw-r----- 1 root adm 313102 Mai 13 06:25 messages.4.gz drwxr-xr-x 2 ntp ntp 4096 Nov 2 2015 ntpstats -rw-r--r-- 1 root root 543 Mai 27 2016 regen_ssh_keys.log drwxr-x--- 2 root adm 4096 Apr 14 2016 samba -rw-r----- 1 root adm 243790 Mai 28 10:53 syslog -rw-r----- 1 root adm 1604687 Mai 28 06:25 syslog.1 -rw-r----- 1 root adm 314809 Mai 27 06:25 syslog.2.gz -rw-r----- 1 root adm 300762 Mai 26 06:25 syslog.3.gz -rw-r----- 1 root adm 300479 Mai 25 06:25 syslog.4.gz -rw-r----- 1 root adm 302960 Mai 24 06:25 syslog.5.gz -rw-r----- 1 root adm 302354 Mai 23 06:25 syslog.6.gz -rw-r----- 1 root adm 362017 Mai 22 06:25 syslog.7.gz -rw-r----- 1 root adm 6357 Mai 28 10:16 user.log -rw-r----- 1 root adm 275545 Mai 28 06:16 user.log.1 -rw-r----- 1 root adm 16435 Mai 22 06:16 user.log.2.gz -rw-r----- 1 root adm 3065 Mai 14 06:16 user.log.3.gz -rw-r----- 1 root adm 5457 Mai 13 06:16 user.log.4.gz -rw-rw-r-- 1 root utmp 1964544 Mai 28 10:52 wtmp -rw-rw-r-- 1 root utmp 1453056 Mai 13 06:16 wtmp.1 -rw-r--r-- 1 root root 6855 Mai 28 10:16 Xorg.0.log -rw-r--r-- 1 root root 6927 Mai 28 10:16 Xorg.0.log.old -rw-r--r-- 1 root root 2622386 Mai 28 10:17 z-way-server.log -rw-r--r-- 1 root root 995148 Mai 28 06:17 z-way-server.log.1.gz -rw-r--r-- 1 root root 954371 Mai 27 06:17 z-way-server.log.2.gz -rw-r--r-- 1 root root 960714 Mai 26 06:17 z-way-server.log.3.gz -rw-r--r-- 1 root root 916731 Mai 25 06:17 z-way-server.log.4.gz pi@raspberrypi:~ $ sudo ls -al /etc/suderos.d/ ls: Zugriff auf /etc/suderos.d/ nicht möglich: Datei oder Verzeichnis nicht gefunden -
Oh entschuldige det das hab ich ggf. unglücklich beschrieben. Ich geh über das macOS Terminal per ssh auf den raspi.
Dort läuft homebridge.
Hab inzwischen mal den Befehl ausprobiert, aber der zeigt mir keinen live log sudo journalctl -f -u homebridge
-
hmm.. erstmal danke für die prompte Rückmeldung, aber irgendwie hat das nicht den Effekt.
Da tut sich nach Eingabe von sudo tail -f /var/log/syslog | grep homebridge nichts im log verändern.
Und bei sudo tail -f /var/log/syslog wird gar nichts angezeigt.
Erwarten würde ich, wenn ich in der App etwas auslöse, dass eine Zeile automatisch dazu kommt und mir zeigt was homebridge macht.
Wie gesagt, wie beim Befehl homebridge
Oder verstehe ich was ganz falsch?

-
Hallo an alle Homebridge- Wochenendwerkler..

Gibt es eine Möglichkeit zu sehen, was homebridge so im Hintergrund macht?
Wenn homebridge noch nicht läuft und ich im Terminal (macOS) einfach auf dem Pi homebridge eingebe, lädt er ja alle plugins usw. und zeigt dann nach dem HomeKit Code als Log, was sonst gerade so an Status bei einem Button drücken über Eve oder Home App auf homebridge passiert und läuft.
Das suche ich, wie ich das auch einfach zwischendurch mir mal anschauen kann, ohne homebridge beenden und neu starten zu müssen.
sudo journalctl -f -u homebridge ist da nicht so ganz der Befehl der das bewirkt und auch die anderen die ich bisher gefunden habe, zeigen nicht "live" wenn ich über die App nen Button drücke.
Wenn hierzu jemand einen Tipp hat, danke ich vorab sehr.

-
Kurze Zwischenfrage zum Thema Broadlink. Hat jemand Erfahrung ob auch der https://www.amazon.de/gp/produ…psc=1&tag=hktips-forum-21 funktioniert mit dem homebridge Plugin?
-
dan7788 Und iCloud mit Schlüsselbund muss auch auf den Geräten aktiviert sein. Vielleicht ist das noch ein Tipp.
-
dan7788 Zunächst herzlich willkommen.
Du beschreibst, dass Du alle Geräte (Eve und Apple TV 3) bereits zu Hause hast.
Wo bist Du denn bei der Einrichtung Deines Vorhabens ins Stocken gekommen beim Ausprobieren?
-
Also ich nutze drei Nest Protect der 1. Gen. und die funktionieren bestens. Bisher keine Störungen oder Fehlmeldung. Alle sind zudem über hombrige eingebunden.
-
Über IFTTT ist jetzt endlich auch eine Verbindung zum Kaffeevollautomat mit Home Connect möglich.
Der Service Home Connect Coffee Machine ist kürzlich zur Verfügung gestellt worden.
Und dank Homebridge Plugin fürIFTTT Maker Channel hört Siri nun auch auf "Hey Siri, mach die Kaffeemaschine an" und das Gerät lässt sich in z.B. die "Guten Morgen" Szene einbinden.

Und ja, den Kaffee muss ich mir noch immer selbst holen, genauso wie den Tee beim Wasserkocher.

Aber auch da wird dran gearbeitet.

-
Nett … So ist's fast wie bei mir zu Hause. Außer, dass ich keine Jalousie habe. Aber z.B. auch die Szene "Guten Morgen", macht genau das.
Licht auf "Energize", Wohnungstür entriegeln, Fernseher und Apple TV einschalten, Music vom iMac starten und den Wasserkocher anschalten.
?? Love it!
Video: A tour of one of the first Apple HomeKit homes