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.

    v2.18.0 update gave black screen, then nothing.

    Scheduled Pinned Locked Moved Solved Troubleshooting
    73 Posts 4 Posters 38.4k Views 4 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 Do not disturb
      sdetweil @Richard238
      last edited by

      @richard238 ok, fun times…

      so, do

      cd ~
      mv MagicMirror MagicMirror.save
      git clone  https://github.com/MichMich/MagicMirror.git
      cd MagicMirror
      npm install --only=prod
      cd config
      cp config.js.sample config.js
      cd ..
      

      then npm start

      Sam

      How to add modules

      learning how to use browser developers window for css changes

      R 1 Reply Last reply Reply Quote 0
      • R Offline
        Richard238 @sdetweil
        last edited by

        @sdetweil

        Clean install - works perfectly! :)

        pi@magicmirror:~/MagicMirror $ cd config
        pi@magicmirror:~/MagicMirror/config $ cp config.js.sample config.js
        pi@magicmirror:~/MagicMirror/config $ cd ..
        pi@magicmirror:~/MagicMirror $ npm start
        
        > magicmirror@2.18.0 start
        > DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js
        
        [06.01.2022 16:30.01.197] [LOG]   Starting MagicMirror: v2.18.0
        [06.01.2022 16:30.01.222] [LOG]   Loading config ...
        [06.01.2022 16:30.01.238] [LOG]   Loading module helpers ...
        [06.01.2022 16:30.01.243] [LOG]   No helper found for module: alert.
        [06.01.2022 16:30.01.307] [LOG]   Initializing new module helper ...
        [06.01.2022 16:30.01.311] [LOG]   Module helper loaded: updatenotification
        [06.01.2022 16:30.01.315] [LOG]   No helper found for module: clock.
        [06.01.2022 16:30.01.765] [LOG]   Initializing new module helper ...
        [06.01.2022 16:30.01.768] [LOG]   Module helper loaded: calendar
        [06.01.2022 16:30.01.771] [LOG]   No helper found for module: compliments.
        [06.01.2022 16:30.01.773] [LOG]   No helper found for module: weather.
        [06.01.2022 16:30.01.843] [LOG]   Initializing new module helper ...
        [06.01.2022 16:30.01.845] [LOG]   Module helper loaded: newsfeed
        [06.01.2022 16:30.01.848] [LOG]   All module helpers loaded.
        [06.01.2022 16:30.02.152] [LOG]   Starting server on port 8080 ... 
        [06.01.2022 16:30.02.183] [LOG]   Server started ...
        [06.01.2022 16:30.02.185] [LOG]   Connecting socket for: updatenotification
        [06.01.2022 16:30.02.187] [LOG]   Starting module helper: updatenotification
        [06.01.2022 16:30.02.189] [LOG]   Connecting socket for: calendar
        [06.01.2022 16:30.02.190] [LOG]   Starting node helper for: calendar
        [06.01.2022 16:30.02.191] [LOG]   Connecting socket for: newsfeed
        [06.01.2022 16:30.02.192] [LOG]   Starting node helper for: newsfeed
        [06.01.2022 16:30.02.193] [LOG]   Sockets connected & modules started ...
        [06.01.2022 16:30.02.845] [LOG]   Launching application.
        [8846:0106/163005.246382:ERROR:viz_main_impl.cc(161)] Exiting GPU process due to errors during initialization
        [8886:0106/163005.631441:ERROR:sandbox_linux.cc(376)] InitializeSandbox() called with multiple threads in process gpu-process.
        [06.01.2022 16:30.12.077] [LOG]   Create new calendarfetcher for url: http://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics - Interval: 300000
        [06.01.2022 16:30.12.157] [LOG]   Create new newsfetcher for url: https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml - Interval: 300000
        [06.01.2022 16:30.12.258] [INFO]  Checking git for module: default
        [06.01.2022 16:30.13.590] [INFO]  Calendar-Fetcher: Broadcasting 10 events.
        [06.01.2022 16:30.13.638] [INFO]  Newsfeed-Fetcher: Broadcasting 64 items.
        
        
        S 1 Reply Last reply Reply Quote 0
        • S Do not disturb
          sdetweil @Richard238
          last edited by

          @richard238 ok!.. run this to get rid of the sandbox problem

          bash -c  "$(curl -sL https://raw.githubusercontent.com/sdetweil/MagicMirror_scripts/master/fixsandbox)"
          

          then

          cd ~/MagicMirror/modules
          # save the new default modules folder
          mv default default.new
          cd ..
          # copy all the modules from old install (incl default) preserve ownership and dates, need sudo to copy git info 
          sudo cp -r -p ~/MagicMirror.save/modules/* modules
          cd modules
          # remove the copied default modules
          rm -rf default
          # restore the saved default
          mv default.new default
          

          copy your full function config.js to MagicMirror/config
          and try it out

          cd ~/MagicMirror
          npm start 
          

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          R 1 Reply Last reply Reply Quote 0
          • R Offline
            Richard238 @sdetweil
            last edited by

            @sdetweil

            pi@magicmirror:~ $ cd ~/MagicMirror/modules
            pi@magicmirror:~/MagicMirror/modules $ mv default default.new
            pi@magicmirror:~/MagicMirror/modules $ sudo cp -r -p ~/MagicMirror.save/modules/* modules
            cp: target 'modules' is not a directory
            

            Tried it without the space…

            pi@magicmirror:~/MagicMirror/modules $ sudo cp -r -p ~/MagicMirror.save/modules/*modules
            cp: missing destination file operand after '/home/pi/MagicMirror.save/modules/*modules'
            Try 'cp --help' for more information.
            pi@magicmirror:~/MagicMirror/modules $ 
            
            R 1 Reply Last reply Reply Quote 0
            • R Offline
              Richard238 @Richard238
              last edited by

              @richard238

              I have to leave shortly Sam.

              Thank you for all your help with this today, I’ll try again tomorrow.

              Richard.

              S 1 Reply Last reply Reply Quote 0
              • S Do not disturb
                sdetweil @Richard238
                last edited by

                @richard238 ok

                you forgot the cd …

                cd ..
                # copy all the modules from old install (incl default) preserve ownership and dates, need sudo to copy git info 
                sudo cp -r -p ~/MagicMirror.save/modules/* modules
                

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                R 1 Reply Last reply Reply Quote 0
                • R Offline
                  Richard238 @sdetweil
                  last edited by

                  @sdetweil

                  Trying to rename config.js to sample,

                  Error when getting information for file “/home/pi/MagicMirror/config/config.js”: No such file or directory
                  Error renaming file /home/pi/MagicMirror/config/config.js: No such file or directory
                  
                  

                  Yet I can see it, I can query it for permissions…

                  Back tomorrow.
                  Richard.

                  S 1 Reply Last reply Reply Quote 0
                  • S Do not disturb
                    sdetweil @Richard238
                    last edited by

                    @richard238 said in v2.18.0 update gave black screen, then nothing.:

                    Error when getting information for file “/home/pi/MagicMirror/config/config.js”

                    you need to copy from save

                    cd ~/MagicMirror.save/config
                    cp -p config.js ~/Magicmirror/config
                    

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    R 1 Reply Last reply Reply Quote 0
                    • R Offline
                      Richard238 @sdetweil
                      last edited by

                      @sdetweil

                      Good morning Sam.

                      Tried that late yesterday, and yes, it works.
                      And this morning, I copied

                      custom.css
                      

                      from

                      /home/pi/MagicMirror.save/css   
                      

                      to

                      /home/pi/MagicMirror/css
                      

                      This too is working perfectly.

                      Is there anything else to do, housekeeping maybe, or is that it now?

                      S 1 Reply Last reply Reply Quote 0
                      • S Do not disturb
                        sdetweil @Richard238
                        last edited by

                        @richard238 if everything is running ok then I think you are done, and can delete the
                        MagicMirror.save folder

                        Sam

                        How to add modules

                        learning how to use browser developers window for css changes

                        R 1 Reply Last reply Reply Quote 0
                        • R Offline
                          Richard238 @sdetweil
                          last edited by

                          @sdetweil

                          Ok, I’ll do that then.

                          Do we know what the cause of all this was, was it something to do with a mismatch in versions of node and npm?

                          S 1 Reply Last reply Reply Quote 0
                          • S Do not disturb
                            sdetweil @Richard238
                            last edited by

                            @richard238 no idea what caused it.

                            there clearly was an error somewhere in the upgrade process, maybe reported and missed, or unreported.

                            but can u send me the MagicMirror.save/installers/upgrade.log

                            Sam

                            How to add modules

                            learning how to use browser developers window for css changes

                            R 1 Reply Last reply Reply Quote 0
                            • R Offline
                              Richard238 @sdetweil
                              last edited by

                              @sdetweil

                              That’s a huge file, what’s the best way to send it?

                              S 1 Reply Last reply Reply Quote 0
                              • S Do not disturb
                                sdetweil @Richard238
                                last edited by

                                @richard238 use zip to make it smaller

                                do

                                cd ~
                                zip logfile.zip ~/MagicMirror.save/installers/upgrade.log
                                # rename logfile.zip so it can be emailed
                                mv logfile.zip logfile.txt
                                

                                then use email to send logfile.txt to me.
                                same userid at gmail

                                Sam

                                How to add modules

                                learning how to use browser developers window for css changes

                                R 1 Reply Last reply Reply Quote 0
                                • R Offline
                                  Richard238 @sdetweil
                                  last edited by

                                  @sdetweil

                                  bash: zip: command not found
                                  
                                  

                                  Zipped it on Windows, renamed and emailed.

                                  S 2 Replies Last reply Reply Quote 0
                                  • S Do not disturb
                                    sdetweil @Richard238
                                    last edited by

                                    @richard238 thx…

                                    looking back thru the topic, the

                                    Module.createRequire is not a function is because of downlevel node.
                                    the eslint library depends on node 14+ for that to work.
                                    (from npm run config:check)

                                    Sam

                                    How to add modules

                                    learning how to use browser developers window for css changes

                                    1 Reply Last reply Reply Quote 0
                                    • S Do not disturb
                                      sdetweil @Richard238
                                      last edited by

                                      @richard238 if you haven’t deleted yet, can u try something

                                      because you did

                                      pi@magicmirror:~/MagicMirror $ npm init -y
                                      

                                      in the mm folder, instead of the module folder, this overwrote the shipped package.json

                                      so,

                                      do

                                      cd ~/MagicMirror.save
                                      git checkout package.json
                                      rm -rf node_modules
                                      rm package.lock.json
                                      npm install --only=prod
                                      

                                      then stop good mm if running and then do , in the MagicMirror.save folder

                                      npm start

                                      Sam

                                      How to add modules

                                      learning how to use browser developers window for css changes

                                      R 1 Reply Last reply Reply Quote 0
                                      • R Offline
                                        Richard238 @sdetweil
                                        last edited by

                                        @sdetweil

                                        That’s given a very basic, but working MM

                                        pi@magicmirror:~ $ cd ~/MagicMirror.save
                                        pi@magicmirror:~/MagicMirror.save $ git checkout package.json
                                        pi@magicmirror:~/MagicMirror.save $ rm -rf node_modules
                                        pi@magicmirror:~/MagicMirror.save $ rm package.lock.json
                                        rm: cannot remove 'package.lock.json': No such file or directory
                                        pi@magicmirror:~/MagicMirror.save $ npm install --only=prod
                                        
                                        > magicmirror@2.18.0 install
                                        > echo "Installing vendor files ...
                                        > " && cd vendor && npm install --loglevel=error
                                        
                                        Installing vendor files ...
                                        
                                        
                                        up to date, audited 10 packages in 4s
                                        
                                        found 0 vulnerabilities
                                        
                                        > magicmirror@2.18.0 postinstall
                                        > npm run install-fonts && echo "MagicMirror installation finished successfully! 
                                        > "
                                        
                                        
                                        > magicmirror@2.18.0 install-fonts
                                        > echo "Installing fonts ...
                                        > " && cd fonts && npm install --loglevel=error
                                        
                                        Installing fonts ...
                                        
                                        
                                        up to date, audited 2 packages in 3s
                                        
                                        found 0 vulnerabilities
                                        MagicMirror installation finished successfully! 
                                        
                                        
                                        > magicmirror@2.18.0 prepare
                                        > [ -f node_modules/.bin/husky ] && husky install || echo no husky installed.
                                        
                                        no husky installed.
                                        
                                        added 266 packages, and audited 267 packages in 2m
                                        
                                        19 packages are looking for funding
                                          run `npm fund` for details
                                        
                                        found 0 vulnerabilities
                                        pi@magicmirror:~/MagicMirror.save $ npm start
                                        
                                        > magicmirror@2.18.0 start
                                        > DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js
                                        
                                        [07.01.2022 14:15.55.560] [LOG]   Starting MagicMirror: v2.18.0
                                        [07.01.2022 14:15.55.585] [LOG]   Loading config ...
                                        [07.01.2022 14:15.55.607] [LOG]   Loading module helpers ...
                                        [07.01.2022 14:15.55.617] [LOG]   No helper found for module: alert.
                                        [07.01.2022 14:15.55.675] [LOG]   Initializing new module helper ...
                                        [07.01.2022 14:15.55.679] [LOG]   Module helper loaded: updatenotification
                                        [07.01.2022 14:15.55.683] [LOG]   No helper found for module: clock.
                                        [07.01.2022 14:15.56.139] [LOG]   Initializing new module helper ...
                                        [07.01.2022 14:15.56.141] [LOG]   Module helper loaded: calendar
                                        [07.01.2022 14:15.56.146] [LOG]   No helper found for module: compliments.
                                        [07.01.2022 14:15.56.159] [LOG]   Initializing new module helper ...
                                        [07.01.2022 14:15.56.161] [LOG]   Module helper loaded: currentweather
                                        [07.01.2022 14:15.56.168] [LOG]   Initializing new module helper ...
                                        [07.01.2022 14:15.56.170] [LOG]   Module helper loaded: weatherforecast
                                        [07.01.2022 14:15.56.248] [LOG]   Initializing new module helper ...
                                        [07.01.2022 14:15.56.250] [LOG]   Module helper loaded: newsfeed
                                        [07.01.2022 14:15.56.253] [LOG]   All module helpers loaded.
                                        [07.01.2022 14:15.56.571] [LOG]   Starting server on port 8080 ... 
                                        [07.01.2022 14:15.56.602] [LOG]   Server started ...
                                        [07.01.2022 14:15.56.604] [LOG]   Connecting socket for: updatenotification
                                        [07.01.2022 14:15.56.606] [LOG]   Starting module helper: updatenotification
                                        [07.01.2022 14:15.56.607] [LOG]   Connecting socket for: calendar
                                        [07.01.2022 14:15.56.609] [LOG]   Starting node helper for: calendar
                                        [07.01.2022 14:15.56.610] [LOG]   Connecting socket for: currentweather
                                        [07.01.2022 14:15.56.611] [WARN]  The module 'currentweather' is deprecated in favor of the 'weather'-module, please refer to the documentation for a migration path
                                        [07.01.2022 14:15.56.614] [LOG]   Connecting socket for: weatherforecast
                                        [07.01.2022 14:15.56.616] [WARN]  The module 'weatherforecast' is deprecated in favor of the 'weather'-module, please refer to the documentation for a migration path
                                        [07.01.2022 14:15.56.617] [LOG]   Connecting socket for: newsfeed
                                        [07.01.2022 14:15.56.620] [LOG]   Starting node helper for: newsfeed
                                        [07.01.2022 14:15.56.622] [LOG]   Sockets connected & modules started ...
                                        [07.01.2022 14:15.57.465] [LOG]   Launching application.
                                        [12477:0107/141600.023451:ERROR:viz_main_impl.cc(161)] Exiting GPU process due to errors during initialization
                                        [12538:0107/141600.426774:ERROR:sandbox_linux.cc(376)] InitializeSandbox() called with multiple threads in process gpu-process.
                                        [07.01.2022 14:16.03.157] [LOG]   Create new calendarfetcher for url: http://www.calendarlabs.com/templates/ical/US-Holidays.ics - Interval: 300000
                                        [07.01.2022 14:16.03.201] [LOG]   Create new newsfetcher for url: http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml - Interval: 300000
                                        [07.01.2022 14:16.03.219] [INFO]  Checking git for module: default
                                        [07.01.2022 14:16.04.177] [INFO]  Calendar-Fetcher: Broadcasting 0 events.
                                        [07.01.2022 14:16.04.552] [INFO]  Newsfeed-Fetcher: Broadcasting 57 items.
                                        
                                        S 1 Reply Last reply Reply Quote 0
                                        • S Do not disturb
                                          sdetweil @Richard238
                                          last edited by

                                          @richard238 we may have copied back the config.js.sample before we gave up

                                          Sam

                                          How to add modules

                                          learning how to use browser developers window for css changes

                                          R 1 Reply Last reply Reply Quote 0
                                          • R Offline
                                            Richard238 @sdetweil
                                            last edited by

                                            @sdetweil

                                            That’s working good too.

                                            Do I keep MM, or MM.save?

                                            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
                                            • 3 / 4
                                            • 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