• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
  1. Home
  2. 35110
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
3
Offline
  • Profile
  • Following 0
  • Followers 0
  • Topics 3
  • Posts 50
  • Groups 0

35110

@35110

3
Reputation
1.3k
Profile views
50
Posts
0
Followers
0
Following
Joined Feb 20, 2018, 9:52 AM
Last Online Apr 18, 2023, 6:19 AM

35110 Unfollow Follow

Best posts made by 35110

  • Deutsche Anleitung MagicMirror auf RaspberryPi 3

    Hallo werte Community, schön hier sein zu dürfen…

    Seit zwei Tagen versuche ich nun MagicMirror auf den Raspberry zu bekommen und ich muß gestehen, meine Vor- und Englisch Kenntnisse sind leider dafür scheinbar zu wenig, als das mir dieses gelingen mag. Daher dachte ich mir, ich schaue mich hier im Forum mal um und suche nach einer Deutschen Anleitung für mein Problem - komisch ich finde keine Deutsche Anleitung und nun hoffe ich, dass mir die werte Community beim erstellen solch einer Anleitung hilft.

    Als Grundvorraussetzung dient natürlich der Raspberry Pi 3, auf einer 8GB Micro SD Karte habe ich mit Etcher das Raspian Stretch Lite Image gezogen und den Raspberry gestartet.

    sudo raspi-config ermöglicht mir den Zugriff auf die Einstellungen des Pi und so kann ich dort SSH aktivieren, um alle Eingaben über meinen Computer durchzuführen. Mit Putty kann ich per IP auf den Raspberry zugreifen.

    sudo apt-get update gefolgt von sudo apt-get dist-upgrade versetzen Raspian Betriebssystem auf den aktuellen Stand und nun geht es auch schon mit der Installation von MagicMirror los.

    Ich habe dazu die Anleitung der MagicMirror Seite verwendet:

    ~ $ bash -c “$(curl -sL https://raw.githubusercontent.com/MichMich/MagicMirror/master/installers/raspberry.sh)”

    Nach beendigung der Installation führt man noch das Update von Magic Mirror aus:

    ~ $ git pull && npm install

    Die Software für den Autostart (PM2) wird während der Installation automatisch mit Installiert, dazu wird man gefragt, ob die Installation durchgeführt werden soll.

    Nach sudo reboot startet der Pi erneut…doch leider Startet MagicMirror bei mir nicht!

    posted in General Discussion
    3
    35110
    Feb 20, 2018, 10:17 AM
  • RE: Deutsche Anleitung MagicMirror auf RaspberryPi 3

    MagicMirror auf Raspberry Pi 3 (Update)

    Ich werde nachfolgend meine Schritte auflisten:

    • Raspian Buster 20.06.2019 per Etcher auf eine 8GB Micro SD Karte ziehen
    • Micro SD Karte in den RaspberryPi3 stecken und mit Netzteil verbinden
    • First Boot…keine Fehlermeldung…Grafische Oberfläche wurde auf dem angeschlossenen Monitor gestartet

    Beim ersten Start von Raspian werden die Lokalen Einstellungen abgefragt und scheinbar automatisch in der Raspberry Konfiguration übernommen. Sobald man unter „Country“ – „Germany“ auswählt, werden alle anderen Punkte automatisch angepasst. NEXT

    Raspian fordert eine Änderung des Passworts, dieses sollte man sich gut merken, wenn man später per SSH über z.B. Putty auf den Raspberry zugreifen möchte. Der Benutzername „Pi“ wird nicht geändert. NEXT

    Raspian sucht nach verfügbaren WLAN Verbindungen, mit dem man sich durch Eingabe des passenden WLAN Schlüssel verbinden kann. Irgendwo habe ich mal gelesen, das es besser ist, wenn man bei den nachfolgenden Punkten – also der Installation von MagicMirror – lieber über LAN verbunden sein soll, damit es keinen Datenverlust und somit Beschädigung der Installation, durch evtl. Verbindungsabbrüche des WLAN kommt. NEXT
    Raspian prüft im letzten Schritt nun selbstständig nach Updates und installiert diese. NEXT

    • LXTerminal öffnen
    • sudo raspi-config startet die Raspberry Konfiguration und dort bearbeite ich folgende Punkte:
      2 Network Options -> N1 Hostname-> belasse ich wie vorgegeben auf raspberrypi
      2 Network Options -> N3 Network interface names -> OK
      4 Localisation Options -> I1 Change Local -> de-DE.UTF-8 UTF-8 auswählen
      4 Localisation Options ->I2 Change Timezone -> Europe -> Berlin

      5 Interface Options -> P2 SSH -> aktivieren
      7 Advanced Option -> A7 GL Driver -> G1 GL (Full KMS)
      MagicMirror 2.4.1 verfügt/unterstützt gemäß MagicMirror „Electron“ und um dies nutzen zu können, muß man gemäß Wiki Anleitung den GL Driver aktivieren
      Finish und Reboot

    Installation über SSH/Putty

    • Netwerkadresse auslessen-dazu oben rechts auf das Netzwerk Symbol mit der Maus gehen
    • Putty starten und Netzwerkadresse eingeben und mit Pi verbinden
    • Login as: pi password: das zuvor selbst gewählte Passwort

    Eigentlich sollte Raspian dank seinem automatischen Update auf dem aktuellen Stand sein, daher verzichte ich diesmal auf die beiden nachfolgenden Befehle.

    - sudo apt-get update
    - sudo apt-get dist-upgrade und die Abfrage mit J bestätigen

    Mit folgendem Schritt mache ich weiter und installiere die aktuellste Version von Node

    • curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash –
    • sudo apt-get install -y nodejs
    • node –v zeigt die installierte Version an

    Nun überspielen wir MagicMirror auf den Pi

    • git clone https://github.com/MichMich/MagicMirror
    • cd MagicMirror/
    • npm install
    • DISPLAY=:0 nohup npm start
      Ausgabe Konsole: nohup: ignoriere Eingabe und hänge Ausgabe an ‘nohup.out’ an

    Auf dem Display des Raspberry wird MagicMirror Please Create a config File angezeigt

    • Variante 1: Auf den Raspberry mit Maus und Tastatur wechseln und dort im Dateimanager (oben Links) den Ordner MagicMirror und dann Config öffnen.

    • Doppel Klick auf die config.js sample und dort die Module anpassen z.B.:

    • Zeile 24: Language: “en” - en auf de ändern

    • Zeile 25: timeFormat: 24 - keine Änderung

    • Zeile 26: units: “metric” - keine Änderung

    • Datei -> Speichern unter -> config.js erstellt die benötigte Config Datei um Magic Mirror auszuführen

    • Variante 2: Über die Putty Konsole folgende Befehle ausführen:

    • cd ~/MagicMirror/config

    • cp config.js.sample config.js

    • nano config.js

    • Änderungen wie oben beschrieben durchführen und mit STRG O und STRG X speichern und beenden

    • Auf dem Raspberry in die Konsole wechseln und dort folgendes eingeben um MagicMirror zu starten:

    • cd MagicMirror

    • npm start

    Um MagicMirror aus Putty heraus zu starten (Achtung - MagicMirror wird auf dem an den Raspberry angeschlossenen Display angezeigt und nicht auf der Konsole von Putty) folgende Eingabe in der Puuty Konsole:

    • cd MagicMirror
    • Display=:0 nohup npm start

    Danke für die Anleitung von @pinsdorf wie man Module installiert!

    Mein Beispiel dazu ist das Modul MMM-Fuel mit dem ich mir die Tankstellenpreise anzeigen lassen gemäß Anleitung https://github.com/fewieden/MMM-Fuel :

    • Die Konsole auf dem Raspberry öffnen und folgende Befehle ausführen:
    • cd ~/MagicMirror/modules
    • git clone https://github.com/fewieden/MMM-Fuel.git
    • cd MMM-Fuel
    • npm install

    Nach Fertigstellung der Installation die Config.js im Ordner MagicMirror -> Config öffnen
    Ich habe das Module "Alert“ gelöscht bzw. wie folgt überschriben:

    module: “MMM-Fuel“,
    position: “bottom_left“,
    config: {
    api_key: “
    den könnt Ihr euch kostenlos auf Tankerkoenig.de generieren “
    lat: eure Koordinaten
    lng: eure Koordinaten
    types: [“diesel“]
    radius: 10
    }

    Google Kalender einfügen…

    • Einen Account bei Google anlegen oder bei Google anmelden und auf Google Kalender wechseln. Neuen Kalender erstellen und diesen z.B. Familien Kalender benennen. Was früher leider nicht ging, nun aber verfügbar ist, in den Einstellungen des neuerstellten Kalender ganz nach unten scrollen bis zum Punkt Privatadresse im iCal-Format. Diese Adresse kopieren und in die Config.js einfügen.

    By the Way…
    Kleine Hilfestellung für die Positionierung der Module findet Ihr hier:
    https://forum.magicmirror.builders/topic/286/regions

    Wie versporchen kommt nun die Anleitung um die Compliments zu editieren. Ich habe mich jetzt dabei erstmal nur an den Tageszeiten orientiert. Man kann das aber dank der Original Anleitung (https://github.com/MichMich/MagicMirror/tree/master/modules/default/compliments) auch noch ausschmücken. Hier nun mein Code:

                  {
                            module: "compliments",
                            position: "bottom_bar",
    			config: {
    				compliments: {
    					anytime: [
    						"Text 1"
    					],
    					morning: [
    						"Text 2",
    						"Text 3",
    						"Text 4"
    					],
    					afternoon: [
    						"Text 5",
    						"Text 6",
    						"Text 7"
    					],
    					evening: [
    						"Text 8",
    						"Text 9",
    						"Text 10"
    					]
    				}
    			}
                    },
    

    Danke euch für euer durchweg positives Feedback!!
    Ja natürlich würde die Englische Anleitung genügen, aber ich muß gestehen, dass mein Englisch jetzt scheinbar nicht so gut ist wie gedacht.

    Ich finde es fast schon schade, dass es keine eigene Deutschsprachige Sektion im Forum gibt, schliesslich sind wir alle keine Natural Language Speaker und es ist oftmals ganz gut, wenn man sich auf Deutsch mit anderen im Forum austauschen kann, da gibt es keine Missverständnisse, aber das sind nur meine Erfahrungen aus anderen Foren.

    posted in General Discussion
    3
    35110
    Feb 20, 2018, 9:12 PM
  • RE: Anfänger hat Fragen

    Ich kann mich @anf und @pinsdorf nur anschliessen, versuch es einfach mal und beschäftige dich mit dem Thema. Du wirst sehen so schwer ist es nicht. und du hast hier ein starkes Forum, was dir gerne hilft. Ich selber habe auch erst vor etwas über einer Woche angefangen und dazu auch eine kleine Anleitung hier geschrieben - auf Deutsch.

    Ich arbeite derzeit auch noch am Monitor mit angeschlossenen Raspberry und Tastatur bzw. per Putty über den Laptop, da es mir da einfacher fällt Script Zeilen zu kopieren. Erst wenn mir das Endresultat dann gefällt, werde ich mich an den Bau eines Spiegels machen. Ich weiß derzeit auch noch nicht, ob ich einen richtigen Venezianischen Spiegel verwenden (kaufe) oder ob ich es mit Spieglefolie versuche.

    Derzeit warte ich auch noch auf ein Display Controller um mein 15,6" Display aus einem alten Laptop anzusteuern evtl. “schlachte” ich auch den 17" Display an dem ich gerade MagicMirror ausprobiere.

    @anf: es gibt glancr doch bereits seit längeren kommerziell und absolut kostenlos zum Downloaden inkl. Anleitung? ( https://glancr.de/mirr-os/ )

    posted in General Discussion
    3
    35110
    Feb 24, 2018, 4:01 PM

Latest posts made by 35110

  • RE: PM2 beendet und startet MM andauernd nach Update

    Ich hab jetzt den Raspberry komplett neu aufgesetzt und MM neu installiert - jetzt geht es wieder

    posted in Troubleshooting
    3
    35110
    Apr 17, 2023, 10:42 AM
  • RE: PM2 beendet und startet MM andauernd nach Update

    @sdetweil

    NODE v16.19.0
    NPM v 8.19.3

    Update via Script

    bash -c  "$(curl -sL https://raw.githubusercontent.com/sdetweil/MagicMirror_scripts/master/upgrade-script.sh)" force
    
    posted in Troubleshooting
    3
    35110
    Apr 16, 2023, 6:42 AM
  • PM2 beendet und startet MM andauernd nach Update

    Guten Morgen, mein MM funktioniert nachdem Update nicht mehr richtig.
    Es wird automatisch beendet und neugestartet von pm2.

    Hier der PM2 LOG:

    0|mm     | > magicmirror@2.23.0 start
    0|mm     | > DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js
    0|mm     | [15.04.2023 11:09.43.757] [LOG]   Starting MagicMirror: v2.23.0
    0|mm     | [15.04.2023 11:09.43.773] [LOG]   Loading config ...
    0|mm     | [15.04.2023 11:09.43.781] [DEBUG] config template file not exists, no envsubst
    0|mm     | [15.04.2023 11:09.43.793] [LOG]   Loading module helpers ...
    0|mm     | [15.04.2023 11:09.43.836] [LOG]   Initializing new module helper ...
    0|mm     | [15.04.2023 11:09.43.839] [LOG]   Module helper loaded: updatenotification
    0|mm     | [15.04.2023 11:09.43.841] [LOG]   No helper found for module: clock.
    0|mm     | [15.04.2023 11:09.43.850] [LOG]   Initializing new module helper ...
    0|mm     | [15.04.2023 11:09.43.852] [LOG]   Check MagicMirror² version for node helper 'MMM-Fuel' - Minimum version: 2.15.0 - Current version: 2.23.0
    0|mm     | [15.04.2023 11:09.43.856] [LOG]   Version is ok!
    0|mm     | [15.04.2023 11:09.43.859] [LOG]   Module helper loaded: MMM-Fuel
    0|mm     | [15.04.2023 11:09.44.347] [LOG]   Initializing new module helper ...
    0|mm     | [15.04.2023 11:09.44.349] [LOG]   Module helper loaded: calendar
    0|mm     | [15.04.2023 11:09.44.350] [LOG]   No helper found for module: compliments.
    0|mm     | [15.04.2023 11:09.44.353] [LOG]   No helper found for module: weather.
    0|mm     | [15.04.2023 11:09.44.358] [LOG]   Initializing new module helper ...
    0|mm     | [15.04.2023 11:09.44.359] [LOG]   Module helper loaded: MMM-DWD-WarnWeather
    0|mm     | [15.04.2023 11:09.45.297] [LOG]   Initializing new module helper ...
    0|mm     | [15.04.2023 11:09.45.302] [LOG]   Module helper loaded: MMM-Jast
    0|mm     | [15.04.2023 11:09.45.304] [LOG]   All module helpers loaded.
    0|mm     | [15.04.2023 11:09.45.332] [LOG]   Starting server on port 8080 ...
    0|mm     | [15.04.2023 11:09.45.871] [LOG]   Server started ...
    0|mm     | [15.04.2023 11:09.45.876] [LOG]   Connecting socket for: updatenotification
    0|mm     | [15.04.2023 11:09.45.878] [LOG]   Starting module helper: updatenotification
    0|mm     | [15.04.2023 11:09.45.879] [LOG]   Connecting socket for: MMM-Fuel
    0|mm     | [15.04.2023 11:09.45.880] [LOG]   Starting module helper: MMM-Fuel
    0|mm     | [15.04.2023 11:09.45.882] [LOG]   Connecting socket for: calendar
    0|mm     | [15.04.2023 11:09.45.884] [LOG]   Starting node helper for: calendar
    0|mm     | [15.04.2023 11:09.45.885] [LOG]   Connecting socket for: MMM-DWD-WarnWeather
    0|mm     | [15.04.2023 11:09.45.887] [LOG]   MMM-DWD-WarnWeather helper started...
    0|mm     | [15.04.2023 11:09.45.890] [LOG]   Connecting socket for: MMM-Jast
    0|mm     | [15.04.2023 11:09.45.892] [LOG]   MMM-Jast helper method started...
    0|mm     | [15.04.2023 11:09.45.894] [LOG]   Sockets connected & modules started ...
    0|mm     | [15.04.2023 11:09.46.027] [LOG]   Launching application.
    0|mm     | [15654:0415/110946.854883:ERROR:viz_main_impl.cc(186)] Exiting GPU process due to errors during initialization
    0|mm     | [15689:0415/110947.076938:ERROR:gpu_memory_buffer_support_x11.cc(44)] dri3 extension not supported.
    0|mm     | [15662:0415/110947.157042:ERROR:command_buffer_proxy_impl.cc(128)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
    0|mm     | [15.04.2023 11:09.50.379] [LOG]   Create new calendarfetcher for url: https://calendar.google.com/calendar/ical/ZEICHENFOLGEgroup.calendar.google.com/private-ZEICHENFOLGE/basic.ics - Interval: 300000
    0|mm     | [15.04.2023 11:09.53.215] [WARN]  MMM-Fuel: Filtered stationIds list is empty
    0|mm     | [15.04.2023 11:09.55.354] [INFO]  Calendar-Fetcher: Broadcasting 134 events.
    0|mm     | [15.04.2023 11:09.55.570] [INFO]  Checking git for module: MMM-Fuel
    0|mm     | [15.04.2023 11:09.55.666] [INFO]  Checking git for module: MMM-DWD-WarnWeather
    0|mm     | [15.04.2023 11:09.55.727] [INFO]  Checking git for module: MMM-Jast
    0|mm     | [15.04.2023 11:09.55.782] [INFO]  Checking git for module: MagicMirror
    PM2      | pm2 has been killed by signal, dumping process list before exit...
    PM2      | Deleting process 0
    PM2      | Stopping app:mm id:0
    0|mm     | [15.04.2023 11:11.04.768] [LOG]   Shutting down server...
    0|mm     | [15.04.2023 11:11.04.772] [LOG]   Stopping module helper: updatenotification
    0|mm     | [15.04.2023 11:11.04.773] [LOG]   Stopping module helper: MMM-Fuel
    0|mm     | [15.04.2023 11:11.04.774] [LOG]   Stopping module helper: calendar
    0|mm     | [15.04.2023 11:11.04.776] [LOG]   Stopping module helper: MMM-DWD-WarnWeather
    0|mm     | [15.04.2023 11:11.04.777] [LOG]   Stopping module helper: MMM-Jast
    0|mm     | [15.04.2023 11:11.04.779] [LOG]   Node_helpers stopped ...
    PM2      | App [mm:0] exited with code [0] via signal [SIGTERM]
    0|mm     | [15620:0415/111104.849464:ERROR:zygote_communication_linux.cc(291)] Failed to send GetTerminationStatus message to zygote
    0|mm     | [15620:0415/111104.871342:ERROR:network_service_instance_impl.cc(521)] Network service crashed, restarting service.
    0|mm     | [15620:0415/111104.886158:ERROR:zygote_communication_linux.cc(291)] Failed to send GetTerminationStatus message to zygote
    0|mm     | [15620:0415/111104.897434:ERROR:gpu_process_host.cc(985)] GPU process launch failed: error_code=1002
    0|mm     | [15620:0415/111104.905143:ERROR:gpu_process_host.cc(985)] GPU process launch failed: error_code=1002
    0|mm     | [15620:0415/111104.910341:ERROR:gpu_process_host.cc(985)] GPU process launch failed: error_code=1002
    0|mm     | [15620:0415/111104.917887:ERROR:gpu_process_host.cc(985)] GPU process launch failed: error_code=1002
    0|mm     | [15620:0415/111104.922896:ERROR:gpu_process_host.cc(985)] GPU process launch failed: error_code=1002
    PM2      | pid=15596 msg=process killed
    PM2      | Exited peacefully
    
    

    Hat jemand zufällig eine Idee was los ist??

    posted in Troubleshooting
    3
    35110
    Apr 15, 2023, 9:30 AM
  • RE: Deutsche Anleitung MagicMirror auf RaspberryPi 3

    Ich hab da mal ein ganz komisches Problem seit dem letzten Update von MM

    MM beendet und startet sich ständig selbst…also wenn ich dran vorbei gehe ist auch des öfteren der Desktop vom Pi OS zu sehen und dann wieder MM

    Was läuft denn da schief?

    Hab gerade mal in den PM2 log geschaut

    0|mm     | [15.04.2023 11:05.01.825] [LOG]   Starting MagicMirror: v2.23.0
    0|mm     | [15.04.2023 11:05.01.842] [LOG]   Loading config ...
    0|mm     | [15.04.2023 11:05.01.850] [DEBUG] config template file not exists, no envsubst
    0|mm     | [15.04.2023 11:05.01.863] [LOG]   Loading module helpers ...
    0|mm     | [15.04.2023 11:05.01.902] [LOG]   Initializing new module helper ...
    0|mm     | [15.04.2023 11:05.01.905] [LOG]   Module helper loaded: updatenotification
    0|mm     | [15.04.2023 11:05.01.908] [LOG]   No helper found for module: clock.
    0|mm     | [15.04.2023 11:05.01.918] [LOG]   Initializing new module helper ...
    0|mm     | [15.04.2023 11:05.01.919] [LOG]   Check MagicMirror² version for node helper 'MMM-Fuel' - Minimum version: 2.15.0 - Current version: 2.23.0
    0|mm     | [15.04.2023 11:05.01.923] [LOG]   Version is ok!
    0|mm     | [15.04.2023 11:05.01.926] [LOG]   Module helper loaded: MMM-Fuel
    0|mm     | [15.04.2023 11:05.02.455] [LOG]   Initializing new module helper ...
    0|mm     | [15.04.2023 11:05.02.458] [LOG]   Module helper loaded: calendar
    0|mm     | [15.04.2023 11:05.02.460] [LOG]   No helper found for module: compliments.
    0|mm     | [15.04.2023 11:05.02.463] [LOG]   No helper found for module: weather.
    0|mm     | [15.04.2023 11:05.02.470] [LOG]   Initializing new module helper ...
    0|mm     | [15.04.2023 11:05.02.471] [LOG]   Module helper loaded: MMM-DWD-WarnWeather
    0|mm     | [15.04.2023 11:05.03.418] [LOG]   Initializing new module helper ...
    0|mm     | [15.04.2023 11:05.03.419] [LOG]   Module helper loaded: MMM-Jast
    0|mm     | [15.04.2023 11:05.03.419] [LOG]   All module helpers loaded.
    0|mm     | [15.04.2023 11:05.03.446] [LOG]   Starting server on port 8080 ...
    0|mm     | [15.04.2023 11:05.03.983] [LOG]   Server started ...
    0|mm     | [15.04.2023 11:05.03.986] [LOG]   Connecting socket for: updatenotification
    0|mm     | [15.04.2023 11:05.03.989] [LOG]   Starting module helper: updatenotification
    0|mm     | [15.04.2023 11:05.03.990] [LOG]   Connecting socket for: MMM-Fuel
    0|mm     | [15.04.2023 11:05.03.991] [LOG]   Starting module helper: MMM-Fuel
    0|mm     | [15.04.2023 11:05.03.992] [LOG]   Connecting socket for: calendar
    0|mm     | [15.04.2023 11:05.03.994] [LOG]   Starting node helper for: calendar
    0|mm     | [15.04.2023 11:05.03.996] [LOG]   Connecting socket for: MMM-DWD-WarnWeather
    0|mm     | [15.04.2023 11:05.03.997] [LOG]   MMM-DWD-WarnWeather helper started...
    0|mm     | [15.04.2023 11:05.04.001] [LOG]   Connecting socket for: MMM-Jast
    0|mm     | [15.04.2023 11:05.04.003] [LOG]   MMM-Jast helper method started...
    0|mm     | [15.04.2023 11:05.04.005] [LOG]   Sockets connected & modules started ...
    0|mm     | [15.04.2023 11:05.04.049] [LOG]   Launching application.
    0|mm     | [15106:0415/110505.024840:ERROR:viz_main_impl.cc(186)] Exiting GPU process due to errors during initialization
    0|mm     | [15138:0415/110505.230656:ERROR:gpu_memory_buffer_support_x11.cc(44)] dri3 extension not supported.
    0|mm     | [15111:0415/110505.279824:ERROR:command_buffer_proxy_impl.cc(128)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
    0|mm     | [15.04.2023 11:05.08.580] [LOG]   Create new calendarfetcher for url: https://calendar.google.com/calendar/ical/zeichenfolgegroup.calendar.google.com/private-zeichenfolge/basic.ics - Interval: 300000
    0|mm     | [15.04.2023 11:05.11.500] [WARN]  MMM-Fuel: Filtered stationIds list is empty
    0|mm     | [15.04.2023 11:05.13.146] [INFO]  Calendar-Fetcher: Broadcasting 134 events.
    0|mm     | [15.04.2023 11:05.13.356] [INFO]  Checking git for module: MMM-Fuel
    0|mm     | [15.04.2023 11:05.13.429] [INFO]  Checking git for module: MMM-DWD-WarnWeather
    0|mm     | [15.04.2023 11:05.13.493] [INFO]  Checking git for module: MMM-Jast
    0|mm     | [15.04.2023 11:05.13.540] [INFO]  Checking git for module: MagicMirror
    PM2      | pm2 has been killed by signal, dumping process list before exit...
    PM2      | Deleting process 0
    PM2      | Stopping app:mm id:0
    0|mm     | [15.04.2023 11:06.22.781] [LOG]   Shutting down server...
    0|mm     | [15.04.2023 11:06.22.787] [LOG]   Stopping module helper: updatenotification
    0|mm     | [15.04.2023 11:06.22.788] [LOG]   Stopping module helper: MMM-Fuel
    0|mm     | [15.04.2023 11:06.22.789] [LOG]   Stopping module helper: calendar
    0|mm     | [15.04.2023 11:06.22.791] [LOG]   Stopping module helper: MMM-DWD-WarnWeather
    0|mm     | [15.04.2023 11:06.22.792] [LOG]   Stopping module helper: MMM-Jast
    0|mm     | [15.04.2023 11:06.22.795] [LOG]   Node_helpers stopped ...
    PM2      | App [mm:0] exited with code [0] via signal [SIGTERM]
    0|mm     | [15069:0415/110622.830813:ERROR:zygote_communication_linux.cc(291)] Failed to send GetTerminationStatus message to zygote
    0|mm     | [15069:0415/110622.858648:ERROR:network_service_instance_impl.cc(521)] Network service crashed, restarting service.
    0|mm     | [15069:0415/110622.881945:ERROR:zygote_communication_linux.cc(291)] Failed to send GetTerminationStatus message to zygote
    0|mm     | [15069:0415/110622.894739:ERROR:gpu_process_host.cc(985)] GPU process launch failed: error_code=1002
    0|mm     | [15069:0415/110622.905503:ERROR:gpu_process_host.cc(985)] GPU process launch failed: error_code=1002
    0|mm     | [15069:0415/110622.912027:ERROR:gpu_process_host.cc(985)] GPU process launch failed: error_code=1002
    0|mm     | [15069:0415/110622.918710:ERROR:gpu_process_host.cc(985)] GPU process launch failed: error_code=1002
    0|mm     | [15069:0415/110622.924483:ERROR:gpu_process_host.cc(985)] GPU process launch failed: error_code=1002
    0|mm     | [15069:0415/110622.929797:ERROR:gpu_process_host.cc(985)] GPU process launch failed: error_code=1002
    0|mm     | [15069:0415/110622.929889:FATAL:gpu_data_manager_impl_private.cc(440)] GPU process isn't usable. Goodbye.
    PM2      | pid=15045 msg=process killed
    PM2      | Exited peacefully
    
    
    posted in General Discussion
    3
    35110
    Apr 15, 2023, 8:23 AM
  • RE: MMM-Fuel funktioniert nicht mehr

    @sdetweil Ich finde nicht mal die englische Version in MMM-Fuel

    daher habe ich MMM-Fuel einfach neu installiert. Ich bekomme aber selbst bei der Installation des Modules Fehlermeldungen. :anguished_face:

    pi@raspberrypi:~/MagicMirror/modules $ git clone https://github.com/fewieden/MMM-Fuel
    Klone nach 'MMM-Fuel' ...
    remote: Enumerating objects: 926, done.
    remote: Counting objects: 100% (151/151), done.
    remote: Compressing objects: 100% (53/53), done.
    remote: Total 926 (delta 99), reused 143 (delta 96), pack-reused 775
    Empfange Objekte: 100% (926/926), 1.44 MiB | 1.89 MiB/s, Fertig.
    Löse Unterschiede auf: 100% (581/581), Fertig.
    pi@raspberrypi:~/MagicMirror/modules $ cd MMM-Fuel
    pi@raspberrypi:~/MagicMirror/modules/MMM-Fuel $ npm install
    npm WARN old lockfile
    npm WARN old lockfile The package-lock.json file was created with an old version of npm,
    npm WARN old lockfile so supplemental metadata must be fetched from the registry.
    npm WARN old lockfile
    npm WARN old lockfile This is a one-time fix-up, please be patient...
    npm WARN old lockfile
    npm WARN deprecated debug@4.1.1: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
    npm WARN deprecated babel-eslint@10.1.0: babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.
    
    added 526 packages, and audited 527 packages in 2m
    
    73 packages are looking for funding
      run `npm fund` for details
    
    6 vulnerabilities (2 moderate, 3 high, 1 critical)
    
    To address all issues, run:
      npm audit fix
    
    Run `npm audit` for details.
    pi@raspberrypi:~/MagicMirror/modules/MMM-Fuel $
    
    

    ES LÄUFT WIEDER!!! Keine Ahnung wieso und weshalb, aber MMM-Fuel läuft wieder.

    Danke für euren Support

    posted in Troubleshooting
    3
    35110
    Jan 4, 2023, 8:25 PM
  • RE: MMM-Fuel funktioniert nicht mehr

    @sdetweil said in MMM-Fuel funktioniert nicht mehr:

    but it says the German translations file is not present

    Wo ist die hin bzw woher bekomm ich die?

    posted in Troubleshooting
    3
    35110
    Jan 4, 2023, 7:58 PM
  • RE: MMM-Fuel funktioniert nicht mehr

    @sdetweil said in MMM-Fuel funktioniert nicht mehr:

    pm2 logs–lines=50

    pi@raspberrypi:~ $ pm2 logs–lines=50
    [PM2][ERROR] Command not found
    
    usage: pm2 [options] <command>
    
    pm2 -h, --help             all available commands and options
    pm2 examples               display pm2 usage examples
    pm2 <command> -h           help on a specific command
    
    Access pm2 files in ~/.pm2
    pi@raspberrypi:~ $
    
    

    Ich glaube nicht das es an PM2 liegt. Wie gesagt, sobald ich die MMM-Fuel aus der Config löschen, funktioniert MM und das auch via PM2

    posted in Troubleshooting
    3
    35110
    Jan 4, 2023, 7:45 PM
  • RE: MMM-Fuel funktioniert nicht mehr

    @sdetweil
    Ich abe dort eine Orange Warnung:

    VM4 sandbox_bundle:2 Electron Security Warning (Insecure Content-Security-Policy) This renderer process has either no Content Security
      Policy set or a policy with "unsafe-eval" enabled. This exposes users of
      this app to unnecessary security risks.
    
    For more information and help, consult
    https://electronjs.org/docs/tutorial/security.
    This warning will not show up
    once the app is packaged.
    

    und einen Roten Fehler:

    Failed to load resource: the server responded with a status of 404 (Not Found)
    :8080/modules/MMM-Fuel/translations/de.json:1
    
    posted in Troubleshooting
    3
    35110
    Jan 4, 2023, 7:43 PM
  • RE: MMM-Fuel funktioniert nicht mehr

    @sdetweil das Modul war deaktiviert, schliesslich mußte ich MM beenden um Ihren Script auszuführen.

    MMM-Fuel hat ja noch bis vor kurzen funktioniert. Erst seit dem die Update Notification für MM angezeigt wurde, fehlte das Modul auf dem “Display”, der Rest war aber noch vorhanden.

    Nun bleibt nachdem Update das “Display” schwarz und nur wenn ich MMM-Fuel aus der Config entferne, wird alles andere wieder angezeigt.

    Hier der Config Eintrag von Fuel

    {
    			module: "MMM-Fuel",
    			position: "bottom_left",
    			config: {
    			api_key: "meine_api",
    			lat: 51.09276,
    			lng: 8.93330,
    			types: ["e5"],
    			radius: 10
    			}
    		},
    

    sehr komisch…

    Ich habe jetzt extra nochmal die Code Zeilen in die config.js wieder eingefügt und danach erneut den Update Script ausgeführt - nun wird MMM-Fuel im Update sogar aufgeführt.

    pi@raspberrypi:~/MagicMirror $ bash -c  "$(curl -sL https://raw.githubusercontent.com/sdetweil/MagicMirror_scripts/master/upgrade-script.sh)" force
    No LSB modules are available.
    doing test run = false
    update log will be in /home/pi/MagicMirror/installers/upgrade.log
    Check current Node installation ...
    Node currently installed. Checking version number.
    Minimum Node version: v16.9.1
    Installed Node version: v16.19.0
    No Node.js upgrade necessary.
    Check current NPM installation ...
    NPM currently installed. Checking version number.
    Minimum npm version: V7.11.2
    Installed npm version: V8.19.3
    No npm upgrade necessary.
    
    upgrading from version 2.22.0 to 2.22.0
    fetching latest revisions
    updating MagicMirror runtime, please wait
    
    > magicmirror@2.22.0 postinstall
    > npm run install-vendor && npm run install-fonts && echo "MagicMirror² installation finished successfully!
    > "
    
    
    > magicmirror@2.22.0 install-vendor
    > echo "Installing vendor files ...
    > " && cd vendor && npm install --loglevel=error --no-audit --no-fund --no-update-notifier
    
    Installing vendor files ...
    
    
    up to date in 1s
    
    > magicmirror@2.22.0 install-fonts
    > echo "Installing fonts ...
    > " && cd fonts && npm install --loglevel=error --no-audit --no-fund --no-update-notifier
    
    Installing fonts ...
    
    
    up to date in 991ms
    MagicMirror² installation finished successfully!
    
    
    > magicmirror@2.22.0 prepare
    > [ -f node_modules/.bin/husky ] && husky install || echo no husky installed.
    
    no husky installed.
    
    added 275 packages, and audited 276 packages in 2m
    
    46 packages are looking for funding
      run `npm fund` for details
    
    found 0 vulnerabilities
    Checking for modules with removed libraries
    processing dependency changes for active modules with package.json files
    
    processing for module MMM-Fuel please wait
    ----------------------------------
    
    added 16 packages, and audited 17 packages in 19s
    
    8 packages are looking for funding
      run `npm fund` for details
    
    found 0 vulnerabilities
    processing complete for module MMM-Fuel
    
    processing for module MMM-Jast please wait
    ----------------------------------
    
    added 12 packages, and audited 13 packages in 16s
    
    1 package is looking for funding
      run `npm fund` for details
    
    found 0 vulnerabilities
    processing complete for module MMM-Jast
    
    pi@raspberrypi:~/MagicMirror $
    
    
    pi@raspberrypi:~/MagicMirror $ pm2 start mm
    [PM2] Applying action restartProcessId on app [mm](ids: [ 0 ])
    [PM2] [mm](0) ✓
    [PM2] Process successfully started
    ┌────┬────────────────────┬──────────┬──────┬───────────┬──────────┬──────────┐
    │ id │ name               │ mode     │ ↺    │ status    │ cpu      │ memory   │
    ├────┼────────────────────┼──────────┼──────┼───────────┼──────────┼──────────┤
    │ 0  │ mm                 │ fork     │ 12   │ online    │ 0%       │ 2.3mb    │
    └────┴────────────────────┴──────────┴──────┴───────────┴──────────┴──────────┘
    pi@raspberrypi:~/MagicMirror $
    
    

    Das Display bleibt aber weiterhin Schwarz und zeigt nicht mal nen Fehler in der config an

    posted in Troubleshooting
    3
    35110
    Jan 4, 2023, 9:17 AM
  • RE: MMM-Fuel funktioniert nicht mehr

    @sdetweil

    pi@raspberrypi:~/MagicMirror $ bash -c  "$(curl -sL https://raw.githubusercontent.com/sdetweil/MagicMirror_scripts/master/upgrade-script.sh)" force
    No LSB modules are available.
    doing test run = false
    update log will be in /home/pi/MagicMirror/installers/upgrade.log
    Check current Node installation ...
    Node currently installed. Checking version number.
    Minimum Node version: v16.9.1
    Installed Node version: v10.17.0
    Node should be upgraded.
    Installing Node.js ...
    gpg: WARNUNG: Unsicheres Besitzverhältnis des Home-Verzeichnis `/home/pi/.gnupg'
    Paketlisten werden gelesen... Fertig
    Abhängigkeitsbaum wird aufgebaut.
    Statusinformationen werden eingelesen.... Fertig
    Die folgenden Pakete werden aktualisiert (Upgrade):
      nodejs
    1 aktualisiert, 0 neu installiert, 0 zu entfernen und 445 nicht aktualisiert.
    Es müssen 24,2 MB an Archiven heruntergeladen werden.
    Nach dieser Operation werden 47,5 MB Plattenplatz zusätzlich benutzt.
    Holen:1 https://deb.nodesource.com/node_16.x buster/main armhf nodejs armhf 16.19.0-deb-1nodesource1 [24,2 MB]
    Es wurden 24,2 MB in 34 s geholt (711 kB/s).
    apt-listchanges: Changelogs werden gelesen...
    (Lese Datenbank ... 101770 Dateien und Verzeichnisse sind derzeit installiert.)
    Vorbereitung zum Entpacken von .../nodejs_16.19.0-deb-1nodesource1_armhf.deb ...
    Entpacken von nodejs (16.19.0-deb-1nodesource1) über (10.17.0-1nodesource1) ...
    nodejs (16.19.0-deb-1nodesource1) wird eingerichtet ...
    Trigger für man-db (2.8.5-2) werden verarbeitet ...
    node version is
    Node.js installation Done! version=v16.19.0
    Check current NPM installation ...
    NPM currently installed. Checking version number.
    Minimum npm version: V7.11.2
    Installed npm version: V8.19.3
    No npm upgrade necessary.
    
    upgrading from version 2.22.0 to 2.22.0
    fetching latest revisions
    there are 3 local files that are different than the master repo
    
       fonts/package-lock.json
       package-lock.json
       vendor/package-lock.json
    
    any *-lock.json files do not need to be saved
    do you want to save these files for later   (Y/n)?y
    updating MagicMirror runtime, please wait
    
    > magicmirror@2.22.0 postinstall
    > npm run install-vendor && npm run install-fonts && echo "MagicMirror² installation finished successfully!
    > "
    
    
    > magicmirror@2.22.0 install-vendor
    > echo "Installing vendor files ...
    > " && cd vendor && npm install --loglevel=error --no-audit --no-fund --no-update-notifier
    
    Installing vendor files ...
    
    
    up to date in 1s
    
    > magicmirror@2.22.0 install-fonts
    > echo "Installing fonts ...
    > " && cd fonts && npm install --loglevel=error --no-audit --no-fund --no-update-notifier
    
    Installing fonts ...
    
    
    up to date in 869ms
    MagicMirror² installation finished successfully!
    
    
    > magicmirror@2.22.0 prepare
    > [ -f node_modules/.bin/husky ] && husky install || echo no husky installed.
    
    no husky installed.
    
    added 275 packages, and audited 276 packages in 3m
    
    46 packages are looking for funding
      run `npm fund` for details
    
    found 0 vulnerabilities
    npm notice
    npm notice New major version of npm available! 8.19.3 -> 9.2.0
    npm notice Changelog: <https://github.com/npm/cli/releases/tag/v9.2.0>
    npm notice Run `npm install -g npm@9.2.0` to update!
    npm notice
    Checking for modules with removed libraries
    processing dependency changes for active modules with package.json files
    
    processing for module MMM-Jast please wait
    ----------------------------------
    
    added 12 packages, and audited 13 packages in 11s
    
    1 package is looking for funding
      run `npm fund` for details
    
    found 0 vulnerabilities
    processing complete for module MMM-Jast
    
    we stashed a set of files that appear changed from the latest repo versions. you should review them
    see installers/stashed_files for the list
    
    you can use git checkout stash@{0} -- filename to extract one file from the stash
    
    or git stash pop to restore them all
    
    WARNING..
    WARNING.. either will overlay the file just installed by the update
    WARNING..
    pi@raspberrypi:~/MagicMirror $
    
    

    Danach das Update bei MMM-Fuel durchgeführt:

    pi@raspberrypi:~/MagicMirror/modules/MMM-Fuel $ git pull && npm install
    Bereits aktuell.
    npm WARN old lockfile
    npm WARN old lockfile The package-lock.json file was created with an old version of npm,
    npm WARN old lockfile so supplemental metadata must be fetched from the registry.
    npm WARN old lockfile
    npm WARN old lockfile This is a one-time fix-up, please be patient...
    npm WARN old lockfile
    
    up to date, audited 527 packages in 45s
    
    73 packages are looking for funding
      run `npm fund` for details
    
    6 vulnerabilities (2 moderate, 3 high, 1 critical)
    
    To address all issues, run:
      npm audit fix
    
    Run `npm audit` for details.
    pi@raspberrypi:~/MagicMirror/modules/MMM-Fuel $
    
    

    Problem ist nun, dass mein ganzer MM schwarz bleibt und nichts Anzeigt.
    Nehm ich MMM-Fuel aus der config.js raus, wird mir wenigsten der Rest wieder angezeigt.

    posted in Troubleshooting
    3
    35110
    Jan 3, 2023, 6:15 PM
Enjoying MagicMirror? Please consider a donation!
MagicMirror created by Michael Teeuw.
Forum managed by Sam, technical setup by Karsten.
This forum is using NodeBB as its core | Contributors
Contact | Privacy Policy