<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Worked for 5 minutes...]]></title><description><![CDATA[<p dir="auto">After finally getting MM to boot with all the modules appearing on screen, one of the messages was to have the master bench updated, 2500 behind.<br />
Once I was able to get the update to go through, I rebooted and poof. Mama loads but it’s an entirely black screen with no modules.<br />
How do I bring them back?<br />
I know very little about the command lines so talk very slow and spell out the cmd lines for me please! thank you for any help.</p>
]]></description><link>https://forum.magicmirror.builders/topic/10722/worked-for-5-minutes</link><generator>RSS for Node</generator><lastBuildDate>Tue, 14 Jul 2026 01:01:41 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/10722.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 04 Jul 2019 16:22:31 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Worked for 5 minutes... on Fri, 05 Jul 2019 17:29:06 GMT]]></title><description><![CDATA[<p dir="auto">see  dedicated topic and call for collaboration<br />
<a href="https://forum.magicmirror.builders/topic/10729/new-script-for-mirror-release-upgrades">https://forum.magicmirror.builders/topic/10729/new-script-for-mirror-release-upgrades</a></p>
]]></description><link>https://forum.magicmirror.builders/post/58567</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/58567</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Fri, 05 Jul 2019 17:29:06 GMT</pubDate></item><item><title><![CDATA[Reply to Worked for 5 minutes... on Fri, 05 Jul 2019 04:17:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bhepler" aria-label="Profile: bhepler">@<bdi>bhepler</bdi></a> we should start a new script for upgrades</p>
<p dir="auto">installers/upgrade</p>
<pre><code>#!/bin/bash
# change to MagicMirror folder
cd ~/MagicMirror

# get the latest upgrade
if git pull; then
  # update any dependencies for base
  if npm install;
    # process updates for modules after base chnaged
    cd modules
    # get the list of modules with  package.json files
    find  -maxdepth 2 -name 'package.json'  | while IFS= read -r FILE; do
      echo "processing for module " $(dirname $FILE)
      # change to that directory
      cd  $(dirname $FILE)
        # process its dependencies
        npm install
      # return to modules folder
      cd - &gt;/dev/null
    done
    return to Magic Mirror folder
    cd - &gt;/dev/null
  fi
else
  echo git pull failed
  # return to original folder
  cd - &gt;/dev/null
fi
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/58536</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/58536</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Fri, 05 Jul 2019 04:17:46 GMT</pubDate></item><item><title><![CDATA[Reply to Worked for 5 minutes... on Fri, 05 Jul 2019 03:26:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bhepler" aria-label="Profile: bhepler">@<bdi>bhepler</bdi></a> I didn’t.  and that fixed it.  tyvm.</p>
]]></description><link>https://forum.magicmirror.builders/post/58535</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/58535</guid><dc:creator><![CDATA[Chritix]]></dc:creator><pubDate>Fri, 05 Jul 2019 03:26:47 GMT</pubDate></item><item><title><![CDATA[Reply to Worked for 5 minutes... on Thu, 04 Jul 2019 19:20:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/chritix" aria-label="Profile: Chritix">@<bdi>Chritix</bdi></a> - Did you remember to run the install commands after you did the upgrade?</p>
<pre><code>cd ~/MagicMirror
npm install
cd modules
[ go into each module folder and enter:]
npm install
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/58528</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/58528</guid><dc:creator><![CDATA[bhepler]]></dc:creator><pubDate>Thu, 04 Jul 2019 19:20:38 GMT</pubDate></item></channel></rss>