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.

    Everything was going so well

    Scheduled Pinned Locked Moved Unsolved Troubleshooting
    52 Posts 4 Posters 21.8k Views 3 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.
    • J Offline
      JMac @sdetweil
      last edited by

      @sdetweil Wow, that was a bit to take in but makes sense (I think).

      So if I unmount it how do I get the information off it?
      what are the steps here?

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

        @JMac
        unmount it
        run fsck against it
        remount it (hopefully fixed)

        then copy your data first thing, DO NOT WRITE TO THE SD CARD

        config.js
        custom.css
        and a list of all the modules in modules (ls *)

        if u WANT to try in each module folder do

        git remote -v
        ```⁷
        so we know where it came from
        
        quickest way in each module folder
        
        git remote -v | tail -a ~/module_list 
        
        this will list to github source (git remote -v) and append that info  (tail -a) to a known file in your home folder (~ = home)
        
        this is what my backup script does
        IF you have any modules that require authentication (run an auth script) 
        ls *.json while you are there,
        
        you could also run my backup script, from the web page copy/paste  with -s  pointing to the mounted folder MagicMirror 
        https://github.com/sdetweil/MagicMirror-backup-restore
        
        ...MM_backup -s /media/??????/MagicMirror some gobbleygoop name (tab key will fill it in after the 1st letter)
        
        this will create the MM_backup folder in your logged on user home folder..  
        and do all the work described above (after the mount)
        https://github.com/sdetweil/MagicMirror-backup-restore

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        1 Reply Last reply Reply Quote 0
        • J Offline
          JMac
          last edited by

          had a little crack at this again, the Mrs is bugging me to get “her” mirror back up and running.

          So I’ve run sudo umount /dev/sda1
          sudo umount /dev/sda2

          Both drive folders from the mounted (old) SD disappeared from the home screen on the pi as expected.

          then run, (and got)
          sudo e2fsck -f -v /dev/sda2
          e2fsck 1.46.2 (28-feb-2021)
          rootfs: recovering journal
          superblock needs_recovery flag is clear but journal has data.
          Run journal anyway ? YES
          e2fsck: unable to set superblock flags on rootfs

          rootfs: *********** WARNING: filesytem still has errors *********

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

            @JMac bummer

            from search
            https://unix.stackexchange.com/questions/327863/fsck-wont-fsck-unable-to-set-superblock-flags/386886#386886

            was the card readable at all? if so
            take it out and put it back in to get mounted
            and copy the old config.js, custom.css and do

            ls >~/savedlist.txt

            in the MagicMirror/modules folder
            to some file on your booted card

            then we can help you rebuild a new sd card

            Sam

            How to add modules

            learning how to use browser developers window for css changes

            J 2 Replies Last reply Reply Quote 0
            • J Offline
              JMac @sdetweil
              last edited by

              @sdetweil hey Sam, I can still see the old list of modules on the old SD card.

              If that’s the case can the old card still be used?

              the new card is just a completely empty Pi OS, nothing to do with MM on there yet.

              Do I need in run the basic install for MM on the new SD to get that running?

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

                @JMac yes, you need to install MM on the new sd.

                use my script…
                see https://github.com/sdetweil/MagicMirror_scripts
                but you should extract your MM config from the sd card.

                use my backup script to point to the mounted sd card
                see https://github.com/sdetweil/MagicMirror-backup-restore

                then install MM
                and then restore the config saved to the new sdcard (~/MM_backup folder)

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                J 1 Reply Last reply Reply Quote 0
                • J Offline
                  JMac @sdetweil
                  last edited by

                  @sdetweil So install the base of MM on the new SD then follow the steps in your previous post?

                  I have a feeling it definitely won’t be that easy.

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

                    @JMac back is copy/paste from the github, add -s/media/{user}/mountname/MagicMirror

                    then install MagicMirror
                    copy/paste from the github link

                    then restore, copy/paste from the github link. no parms required

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    1 Reply Last reply Reply Quote 0
                    • J Offline
                      JMac @sdetweil
                      last edited by

                      @sdetweil right so when I copy those 2 file’s am I literally just dragging a copy to the new SD’s home screen (just so they’re on the new card) or do they need to go into a MM specific folder on the new card.

                      I can find both of those files on the old SD but I’m not understanding from

                      ls >~savedlist.txt.

                      am I doing that after I’ve installed a fresh MM on the new SD card once that MagicMirror/modules folder exists because running the above command won’t work as the new SD has no reference to MM’s existence.

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

                        @JMac copy ?

                        you go to the web page, and click copy for the command

                        then to terminal window or ssh window, paste command, hit enter (install and restore, add -s parm on backup)

                        you are executing the command directly from the web

                        Sam

                        How to add modules

                        learning how to use browser developers window for css changes

                        J 1 Reply Last reply Reply Quote 0
                        • J Offline
                          JMac @sdetweil
                          last edited by

                          @sdetweil so I’m not manually moving the config and CSS files myself that will be done after via terminal?

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

                            @JMac correct the backup/restore will do all that, and get the module list and restore them

                            Sam

                            How to add modules

                            learning how to use browser developers window for css changes

                            J 1 Reply Last reply Reply Quote 0
                            • J Offline
                              JMac @sdetweil
                              last edited by

                              @sdetweil new install of MM is one the new SD (failed the first time so had to run again and seemed to take a while).

                              when I run your backup script will it automatically find the previous MM install on the old SD card mounted with USB?

                              if not how do I get it to find the previous install to copy the files I need?

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

                                @JMac no it will not find automatically

                                u meed to find it ls /media/your_username

                                username is pi?

                                Sam

                                How to add modules

                                learning how to use browser developers window for css changes

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

                                  @sdetweil did you get back running?

                                  Sam

                                  How to add modules

                                  learning how to use browser developers window for css changes

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