MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. GuyWithAQuestion
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    G
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 1
    • Groups 0

    GuyWithAQuestion

    @GuyWithAQuestion

    0
    Reputation
    49
    Profile views
    1
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    GuyWithAQuestion Unfollow Follow

    Latest posts made by GuyWithAQuestion

    • RE: MM fails regularly

      I’ve had the same issue in the past (running on Raspberry Pi 3b). After about 1 1/2 days of continuously running it would just slow down. My solution was just to reboot it automatically (sometime during the night and then sometime before i got home from work). Works like a charm since.

      I added the below to my /etc/crontab file.
      (It also contains commands for turning on/ off my HDMI monitor for when I’m not home or am sleeping)

      FOR REBOOTING a few times every day (Raspberry Pi gets slow every other day… so reboot)

      Weekdays

      Reboot at 5:30, turn off monitor at 8:45

      Reboot at 16:00, turn off monitor at 10:00

      30 5 * * 1,2,3,4,5 root /sbin/shutdown -r now
      45 8 * * 1,2,3,4,5 root /usr/bin/vcgencmd display_power 0
      00 16 * * 1,2,3,4,5 root /sbin/shutdown -r now
      00 22 * * 1,2,3,4,5 root /usr/bin/vcgencmd display_power 0

      Weekends

      Reboot at 5:30

      Reboot at 16:00, turn off monitor at 10:00

      30 5 * * 6,7 root /sbin/shutdown -r now
      00 16 * * 6,7 root /sbin/shutdown -r now
      00 22 * * 6,7 root /usr/bin/vcgencmd display_power 0

      posted in Troubleshooting
      G
      GuyWithAQuestion