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.

    updated installer script available for testing

    Scheduled Pinned Locked Moved Solved Troubleshooting
    211 Posts 18 Posters 287.2k Views 19 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
      sdetweil @BD0G
      last edited by

      @BD0G u can put all the results in the same response here

      also add output of

      which node
      

      Sam

      How to add modules

      learning how to use browser developers window for css changes

      B 1 Reply Last reply Reply Quote 0
      • B Offline
        BD0G @sdetweil
        last edited by

        @sdetweil Echo $PATH response is
        /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:sbin:/bin:/usr/local/games:/usr/games

        1 Reply Last reply Reply Quote 0
        • B Offline
          BD0G
          last edited by

          Here is the reponse from node -v
          node: /usr/lib/arm-linux-gnueabihf/libstdc++.so.6: version CXXABI_1.3.9' not found (required by node) node: /usr/lib/arm-linux-gnueabihf/libstdc++.so.6: version GLIBCXX_3.4.21’ not found (required by node)

          S 2 Replies Last reply Reply Quote 0
          • B Offline
            BD0G
            last edited by

            Response from which node is

            /usr/local/bin/node

            1 Reply Last reply Reply Quote 0
            • S Offline
              sdetweil @BD0G
              last edited by

              @BD0G said in Anyone want to try updated installer...:

              CXXABI_1.3.9’ not found

              always something…

              seems jesse is just too old for the version of node we are trying to install…

              i did it on stretch (and buster) sucessfully…

              as u are just starting, any aversion to stretch or buster?

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              1 Reply Last reply Reply Quote 0
              • B Offline
                BD0G
                last edited by BD0G

                No aversion. Just want to be able to run MM. :) Which do you suggest?

                S 1 Reply Last reply Reply Quote 0
                • S Offline
                  sdetweil @BD0G
                  last edited by

                  @BD0G i’d go with the latest, buster

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  1 Reply Last reply Reply Quote 0
                  • B Offline
                    BD0G
                    last edited by BD0G

                    Ok. I will find the image and reimage my micro sd card and then run the install script from the first post and report back. Thanks!

                    Im going with
                    Raspbian Buster with desktop and recommended software
                    Image with desktop and recommended software based on Debian Buster
                    Version:September 2019
                    Release date:2019-09-26
                    Kernel version:4.19
                    Size:2541 MB

                    On second thought a smaller image seems more appropriate.

                    Raspbian Buster with desktop
                    Image with desktop based on Debian Buster
                    Version:September 2019
                    Release date:2019-09-26
                    Kernel version:4.19
                    Size:1123 MB

                    S 1 Reply Last reply Reply Quote 0
                    • S Offline
                      sdetweil @BD0G
                      last edited by

                      @BD0G yeh, the ‘recommended software’ includes a bunch of office apps , which u don’t need for a mirror system

                      Sam

                      How to add modules

                      learning how to use browser developers window for css changes

                      1 Reply Last reply Reply Quote 0
                      • B Offline
                        BD0G
                        last edited by

                        Well that worked! Looks like Jesse is just too long in the tooth to run Magic Mirror2. Thanks again!

                        S 1 Reply Last reply Reply Quote 0
                        • S Offline
                          sdetweil @BD0G
                          last edited by

                          @BD0G cool. Thanks for the feedback. Could u post the the install.log to your Dropbox or email to me. Just want to look it over. Need to think about adding info about Jesse now.

                          We need to update electron too (doesn’t work on pi 0 anymore, well armv6l devices)

                          Sam

                          How to add modules

                          learning how to use browser developers window for css changes

                          1 Reply Last reply Reply Quote 0
                          • B Offline
                            BD0G
                            last edited by

                            I am having a heck of a time. I cannot use the local browser to visit my drop box site any longer as it directs me to localhost_/ and there is no web address bar to type the dropbox website into.

                            S 1 Reply Last reply Reply Quote 0
                            • S Offline
                              sdetweil @BD0G
                              last edited by

                              @BD0G chrome is being used for the mirror display, as electron no longer works with the later levels of node.

                              I wouldn’t have expected another use to carry over the settings from the mirror task…

                              pm2 stop 0
                              

                              then use chrome

                              them

                              pm2 start 0
                              

                              Sam

                              How to add modules

                              learning how to use browser developers window for css changes

                              1 Reply Last reply Reply Quote 0
                              • B Offline
                                BD0G
                                last edited by

                                Finally got it to work and upload to my dropbox. Stopping Magic Mirror worked and allowed the Chromium browser to access the drop box webpage, but using my standard credentials (which were correct) just timed out on the logon page. I tried this like 20 times. No dice. Finally logged into dropbox using my google account instead and that allowed me to access a dropbox account that I setup using google credentials.
                                Ridiculous!

                                Here is the link to the install.log
                                https://www.dropbox.com/s/425lhitp7tcftih/install.log?dl=0

                                Now on to the fun of making just simple syntax errors in the config.js file when configuring modules only to have Magic Mirror 2 complain that there is no config.js or an error. This process is 100 percent suck!

                                S 1 Reply Last reply Reply Quote 0
                                • S Offline
                                  sdetweil @BD0G
                                  last edited by

                                  @BD0G cool, thanks…

                                  as for config

                                  each module is

                                  {
                                     module:   "name",
                                     position: "string",
                                     config : {
                                        something: "string",
                                        other_thing: number,
                                        another: true 
                                     }
                                  }
                                  

                                  not that each line has a trailing comma
                                  number/booleans don’t need quotes,
                                  everything else does

                                  single or double doesn’t matter, just have to match on a line

                                  if troubles
                                  do

                                  npm run config:check
                                  

                                  first 1st error, (usually reported on the line AFTER the error )
                                  rerun, etc

                                  Sam

                                  How to add modules

                                  learning how to use browser developers window for css changes

                                  1 Reply Last reply Reply Quote 0
                                  • B Offline
                                    BD0G
                                    last edited by

                                    Thanks ! Thats the process I have been using . Painstaking. Small details always cause errors. Even if I cut and paste right from the github repository using the authors code.

                                    S 1 Reply Last reply Reply Quote 0
                                    • S Offline
                                      sdetweil @BD0G
                                      last edited by

                                      @BD0G yeh, sometimes/many times they don’t check their doc …

                                      not THAT painstaking

                                      thing on the left of the colon doesn’t need quotes, only words on the right

                                      if something follows something else, the something else better have a trailing comma

                                      I may have found a better way to do the node/npm setup… testing now

                                      it allows node 10 on jesse…

                                      thanks for the trouble report so I could think about the problem

                                      Sam

                                      How to add modules

                                      learning how to use browser developers window for css changes

                                      1 Reply Last reply Reply Quote 0
                                      • M Offline
                                        magicmirrorpi4 @sdetweil
                                        last edited by

                                        @sdetweil I entered this to LXTerminal. Whats the next step i need to do?

                                        S 1 Reply Last reply Reply Quote 0
                                        • S Offline
                                          sdetweil @magicmirrorpi4
                                          last edited by

                                          @magicmirrorpi4 u cut/paste the bash-------- )" string into the terminal and hit enter

                                          Sam

                                          How to add modules

                                          learning how to use browser developers window for css changes

                                          1 Reply Last reply Reply Quote 0
                                          • B Offline
                                            bdream
                                            last edited by

                                            Just got Complete Walkthrough - Install MagicMirror on a PC - Windows 7/10 run under Windows 7.

                                            This version of MM is version 2.6.0. I planned to run updatescript from @sdetweil but failed. Have you any idea?

                                            –
                                            cheers, bdream

                                            S 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
                                            • 6
                                            • 7
                                            • 8
                                            • 9
                                            • 10
                                            • 11
                                            • 6 / 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