MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    How I got my Magic Mirror working on a Raspberry Pi 0 (zero)

    Scheduled Pinned Locked Moved Tutorials
    raspberry pipi0zeropizeropi1
    204 Posts 47 Posters 558.0k Views 47 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • 1 Offline
      12wsx
      last edited by

      Hello:) I have similar problem. Magic Mirror installed from image downloaded from this thread. Installed on piZero. Working ok. On screen there was a message to update. I did this and now MM not working. Try config with only clock. Not help.
      Full update log.

       Starting MagicMirror: v2.1.0
      Loading config ...
      Loading module helpers ...
      No helper found for module: clock.
      All module helpers loaded.
      Starting server op port 8080 ...
      Server started ...
      Sockets connected & modules started ...
      
      Ready to go! Please point your browser to: http://localhost:8080
      Whoops! There was an uncaught exception...
      { [Error: listen EADDRINUSE :::8080]
        code: 'EADDRINUSE',
        errno: 'EADDRINUSE',
        syscall: 'listen',
        address: '::',
        port: 8080 }
      MagicMirror will not quit, but it might be a good idea to check why this happene                                                                                                                     d. Maybe no internet connection?
      If you think this really is an issue, please open an issue on GitHub: https://gi                                                                                                                     thub.com/MichMich/MagicMirror/issues
      
      (EE)
      Fatal server error:
      (EE) Server is already active for display 0
              If this server is no longer running, remove /tmp/.X0-lock
              and start again.
      (EE)
      (EE)
      Please consult the The X.Org Foundation support
               at http://wiki.x.org
       for help.
      (EE)
      XIO:  fatal IO error 11 (Resource temporarily unavailable) on X server ":0"
            after 7 requests (7 known processed) with 0 events remaining.
      pi@raspberrypi:~ $ ^C
      pi@raspberrypi:~ $ sudo su
      root@raspberrypi:/home/pi# cd ~/MagicMirror && sudo npm install
      bash: cd: /root/MagicMirror: No such file or directory
      root@raspberrypi:/home/pi# cd MagicMirror
      root@raspberrypi:/home/pi/MagicMirror# sudo npm install
      npm WARN peerDependencies The peer dependency stylelint@^8.0.0 included from stylelint-config-standard will no
      npm WARN peerDependencies longer be automatically installed to fulfill the peerDependency
      npm WARN peerDependencies in npm 3+. Your application will need to depend on it explicitly.
      npm WARN peerDependencies The peer dependency stylelint@^8.0.0 included from stylelint-config-recommended will no
      npm WARN peerDependencies longer be automatically installed to fulfill the peerDependency
      npm WARN peerDependencies in npm 3+. Your application will need to depend on it explicitly.
      npm WARN peerDependencies The peer dependency stylelint@^8.0.0 included from grunt-stylelint will no
      npm WARN peerDependencies longer be automatically installed to fulfill the peerDependency
      npm WARN peerDependencies in npm 3+. Your application will need to depend on it explicitly.
      npm ERR! Linux 4.4.34+
      npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "install"
      npm ERR! node v4.2.1
      npm ERR! npm  v2.14.7
      npm ERR! code EPEERINVALID
      
      npm ERR! peerinvalid The package stylelint@7.7.1 does not satisfy its siblings' peerDependencies requirements!
      npm ERR! peerinvalid Peer grunt-stylelint@0.9.0 wants stylelint@^8.0.0
      npm ERR! peerinvalid Peer stylelint-config-standard@17.0.0 wants stylelint@^8.0.0
      
      npm ERR! Please include the following file with any support request:
      npm ERR!     /home/pi/MagicMirror/npm-debug.log
      root@raspberrypi:/home/pi/MagicMirror# vendor && npm install
      bash: vendor: command not found
      root@raspberrypi:/home/pi/MagicMirror#
      
      
      ? 1 Reply Last reply Reply Quote 0
      • ? Offline
        A Former User @12wsx
        last edited by A Former User

        @12wsx
        Sometimes, this error seems to happen when MM is terminated abnormally. (I don’t know what is normal termination. :D)
        In my case, execution npm for debug or test after first normal pm2 bootup makes this error.(Of course, before npm start dev I stopped pm2 process.)
        For the solution, I change port from 8080 to 8081 or from 8081 to 8080(when I meet this problem again). It seems that after some minutes the port is freed automatically(or by execution with port changed.). And fortunately for me, first execution of MM(by pm2 on bootup) is always a success. So… I stop caring about this.

        1 Reply Last reply Reply Quote 0
        • 1 Offline
          12wsx
          last edited by

          my I please someone to make an image of sd card with installed and working MM? i’m trying about week to run MM on piZero and nothing… all the time diffrent errors which i don’t understand.

          P 1 Reply Last reply Reply Quote 0
          • P Offline
            psteimann @12wsx
            last edited by

            @12wsx Change the Port from 8080 to 8099 and then try again…solved a lot of problems for me…

            1 Reply Last reply Reply Quote 0
            • H Offline
              Hawking
              last edited by

              After some weeks with the MagicMirror running, my SD card got corrupted and I decided to reinstall the system from scratch. I switched from “Jessie Light” to “Stretch light”, used node 6.11.4 and of course the latest MagicMirror 2.1.3.

              I can access the MM from the browser of my laptop, but Midori only shows a white page. Even for a very simple config file:

              var config = {
                      address: "",
                      port: 8080,
                      ipWhitelist: ["192.168.2.185", "127.0.0.1", "::ffff:127.0.0.1", "::1"],
                      language: "en",
                      units: "metric",
                      modules: [
                      {
                              module: "helloworld",
                              position: "bottom_bar",
                              config: {
                                      text: "Hello world!"
                              }
                      }
                      ]
              
              };
              
              /*************** DO NOT EDIT THE LINE BELOW ***************/
              if (typeof module !== "undefined") {module.exports = config;}
              

              The start of MM gives no error

              Starting MagicMirror: v2.1.3
              Loading config ...
              Loading module helpers ...
              No helper found for module: helloworld.
              All module helpers loaded.
              Starting server on port 8080 ...
              Server started ...
              Sockets connected & modules started ...
              
              Ready to go! Please point your browser to: http://localhost:8080
              

              and if I change from

              midori -e Fullscreen -a http://localhost:8080
              

              to

              midori -e Fullscreen -a http://www.google.de
              

              I see the google page. So Midori itself and the output on screen seems working as well.

              Is anybody having an idea where to search for the error?
              Is anybody using MagicMirror 2.1.3 on its Pi Zero?

              D 1 Reply Last reply Reply Quote 0
              • D Offline
                Doubleve @Hawking
                last edited by

                @Hawking same problem rpi 1

                N 1 Reply Last reply Reply Quote 0
                • N Offline
                  noorm91 @Doubleve
                  last edited by

                  This post is deleted!
                  1 Reply Last reply Reply Quote 0
                  • 1 Offline
                    12wsx
                    last edited by

                    first set:
                    set ipWhitelist: [] to allow all IP addresses.

                    Warning, this enables from everywhere (on your net) have access.
                    then in webbrowser go to pizero ip with port set in config ex. 192.168.1.12:8080 and check if its working

                    1 Reply Last reply Reply Quote 0
                    • D Offline
                      Doubleve
                      last edited by Doubleve

                      don’t work for me, cannot connect to destination :-(

                      when i do

                      DISPLAY=:0 npm start

                      npm ERR! path /home/pi/package.json
                      npm ERR! code ENOENT
                      npm ERR! errno -2
                      npm ERR! syscall open
                      npm ERR! enoent ENOENT: no such file or directory, open ‘/home/pi/package.json’
                      npm ERR! enoent This is related to npm not being able to find a file.
                      npm ERR! enoent

                      npm ERR! A complete log of this run can be found in:
                      npm ERR! /home/pi/.npm/_logs/2017-10-19T18_58_10_170Z-debug.log

                      D H 2 Replies Last reply Reply Quote 0
                      • D Offline
                        Doubleve @Doubleve
                        last edited by

                        why he’s looking for /home/pi/package.json then it is /home/pi/MagicMirror/package.json ?

                        This is my log

                        /home/pi/.npm/_logs/2017-10-19T18_58_10_170Z-debug.log:

                        0 info it worked if it ends with ok
                        1 verbose cli [ ‘/usr/local/bin/node’, ‘/usr/local/bin/npm’, ‘start’ ]
                        2 info using npm@5.3.0
                        3 info using node@v8.3.0
                        4 verbose config Skipping project config: /home/pi/.npmrc. (matches userconfig)
                        5 verbose stack Error: ENOENT: no such file or directory, open ‘/home/pi/package.json’
                        6 verbose cwd /home/pi
                        7 verbose Linux 4.1.19+
                        8 verbose argv “/usr/local/bin/node” “/usr/local/bin/npm” “start”
                        9 verbose node v8.3.0
                        10 verbose npm v5.3.0
                        11 error path /home/pi/package.json
                        12 error code ENOENT
                        13 error errno -2
                        14 error syscall open
                        15 error enoent ENOENT: no such file or directory, open ‘/home/pi/package.json’
                        16 error enoent This is related to npm not being able to find a file.
                        17 verbose exit [ -2, true ]

                        1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 11
                        • 12
                        • 13
                        • 14
                        • 15
                        • 20
                        • 21
                        • 13 / 21
                        • First post
                          Last post
                        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