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 609.9k 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.
    • S Offline
      SebTota @Wieber
      last edited by

      This post is deleted!
      1 Reply Last reply Reply Quote 0
      • S Offline
        SebTota @Wieber
        last edited by

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

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

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

              Alright after some time I figured it out.

              cd MagicMirror
              cd config
              sudo nano config.js
              then the file should open.

              This is for the noobs like me who might need that.

              bheplerB 1 Reply Last reply Reply Quote 0
              • bheplerB Offline
                bhepler Module Developer @SebTota
                last edited by

                @SebTota What @Wieber has forgotten to mention is that the config.js.sample file is the default configuration that is included with the mirror software. The mirror software itself is looking for config.js. So the step that is missing is to copy the sample to the end file name. Once you have it copied over, this will become the file that you use to change your mirror’s behavior.

                You copy the file with this command: cp ~/MagicMirror/config/config.js.sample ~/MagicMirror/config/config.js

                You can then edit the config.js command as you have already discovered: nano ~/MagicMirror/config/config.js Nano is the editor, config.js is the file you are editing.

                1 Reply Last reply Reply Quote 0
                • P Offline
                  piziie
                  last edited by

                  Great guide!

                  I have a quick question though. When my pi zero boots, it boots into a command line where i can see the modules are loading. It ends with

                  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 }
                  

                  any ideas what causes this and how it can be fixed?

                  S bheplerB 2 Replies Last reply Reply Quote 0
                  • S Offline
                    SebTota @piziie
                    last edited by

                    @piziie I believe my pi had the same response but after a few seconds it boots into the browser and shoes the mirror and works fine. Is it the same with you?

                    P 1 Reply Last reply Reply Quote 0
                    • P Offline
                      piziie @SebTota
                      last edited by piziie

                      @SebTota
                      unfortunately no, it remains on the terminal. When i open a browser and go to localhost:8080 it does appear to be working so i know the MM and modules load correctly.

                      It seems to be an issue with the midori start script?

                      /home/pi/startMidori.sh

                      #!/bin/sh
                      xset -dpms # disable DPMS (Energy Star) features.
                      xset s off # disable screen saver
                      xset s noblank # don’t blank the video device
                      matchbox-window-manager &
                      unclutter &
                      midori -e Fullscreen -a http://localhost:8080
                      

                      My /home/pi/start.sh script:

                      #!/bin/bash
                      cd ~/MagicMirror
                      node serveronly &
                      sleep 45
                      sudo xinit /home/pi/startMidori.sh
                      

                      and the last line in .bashrc

                      /home/pi/start.sh
                      

                      another side note- on boot i get this error:

                      (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) 
                      Starting MagicMirror: v2.1.0
                      Loading config ...
                      Loading module helpers ...
                      No helper found for module: alert.
                      Initializing new module helper ...
                      No helper found for module: clock.
                      XIO:  fatal IO error 11 (Resource temporarily unavailable) on X server ":0"
                            after 6 requests (6 known processed) with 0 events remaining.
                      

                      could this be the source of the error?

                      S 1 Reply Last reply Reply Quote 0
                      • bheplerB Offline
                        bhepler Module Developer @piziie
                        last edited by bhepler

                        @piziie In my experience, this means that the mirror process is already running and you’ve attempted to start it again. Are you using PM2 to manage the mirror process? Is it possible that two of your scripts are both trying to start the mirror? Have you changed any init settings to auto-boot the mirror?

                        P 1 Reply Last reply Reply Quote 0
                        • S Offline
                          SebTota @piziie
                          last edited by

                          @piziie if you want I can post my image and you can write my image to your sd

                          1 Reply Last reply Reply Quote 0
                          • P Offline
                            piziie @bhepler
                            last edited by piziie

                            @bhepler pm2 doesnt appear to be installed, however i do have npm installed. Could that cause a conflict?

                            Any way to the sources from which start the mirror process is starting?

                            Also i may have created a conflict by following the OP steps as well as the steps outlined by @kobie

                            Also…
                            
                            Instead of adding start.sh to the end of .bashrc, it’s better practice to have the
                            script run automatically on start-up. To do this:
                            
                            sudo mv /home/pi/start.sh /etc/init.d/startMagicMirror.sh
                            sudo update-rc.d startMagicMirror.sh defaults 100
                            
                            This moves the script to the standard location for start-up scripts and tells the
                            system to run it after each boot.
                            

                            I went back and deleted the startMagicMirror.sh file, however. Does update-rc.d need to be rolled back as well?

                            bheplerB 1 Reply Last reply Reply Quote 0
                            • bheplerB Offline
                              bhepler Module Developer @piziie
                              last edited by bhepler

                              @piziie That sounds right. Without tracing too closely, it sounds like your startMagicMirror.sh scripts and your start.sh script are both starting the mirror process.

                              P 1 Reply Last reply Reply Quote 0
                              • P Offline
                                piziie @bhepler
                                last edited by

                                @bhepler after deleting startMagicMirror.sh the same problem exists

                                bheplerB 1 Reply Last reply Reply Quote 0
                                • bheplerB Offline
                                  bhepler Module Developer @piziie
                                  last edited by

                                  @piziie After you deleted the startMagicMirror.sh did you run the update command you quoted?
                                  sudo update-rc.d startMagicMirror.sh remove
                                  (more information at the the update-rc man page)

                                  P 1 Reply Last reply Reply Quote 0
                                  • P Offline
                                    piziie @bhepler
                                    last edited by

                                    @bhepler i have run that command, same issue persists.
                                    Could it have something to do with VNCserver?

                                    1 Reply Last reply Reply Quote 0
                                    • M Offline
                                      Mar
                                      last edited by

                                      I have MM2 running quite well on my Pi3 but I’d like to free up the Pi3 and use my zero for the MM2. Has anyone seen any real downsides to using the Pi Zero over the Pi3?

                                      W 1 Reply Last reply Reply Quote 0
                                      • W Offline
                                        Wieber @Mar
                                        last edited by Wieber

                                        @Mar compared to the Pi3 the processing power is way lower, so from that point of view some modules wouldnt work properly. That said, for the ‘stock’ modules and API driven modules it should all work fine. Besides that the installing process is a bit more difficult as you can read above ;)

                                        M 1 Reply Last reply Reply Quote 1
                                        • M Offline
                                          Mar @Wieber
                                          last edited by

                                          @Wieber Thanks, I would be using the Button module, PIR sensor module, Wunderlist module, and I want to try adding the Alexa module once i transfer it over to the Pi?

                                          Another thing I was thinking would be to integrate this into my openhab setup to bring in the status of various sensors.

                                          1 Reply Last reply Reply Quote 0
                                          • S Offline
                                            SebTota
                                            last edited by

                                            I have another question. How could i get into the terminal when the pi goes right into the browser? I cant ssh into it for some reason so is there anyway to exit the browser and go into the terminal?

                                            bheplerB 1 Reply Last reply Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 10
                                            • 11
                                            • 2 / 11
                                            • 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