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

    Posts

    Recent Best Controversial
    • RE: MagicMirror install on LXC Container as a server will not do

      @garbleflux hi, thanks a lot fpr your answer…TOP

      posted in Troubleshooting
      kusselinK
      kusselin
    • MMM-SoccerLiveScore not displayed since today

      Can anyone here tell me why the MMM-SoccerLive Score module is suddenly no longer displayed…until recently it still worked…nothing changed in the config.

      Thanks for any tips

      {
      		module: 'MMM-SoccerLiveScore',
      		position: 'top_left',
      		header: 'Fussball',
      		config: {
      			leagues: [35, 44, 491],
      			showNames: true,
      			showLogos: true,
      			displayTime: 60 * 1000,
      			showTables: true,
      		}
      		},
      

      and about the Mozilla F12 tab

      Load script: modules/MMM-SoccerLiveScore/MMM-SoccerLiveScore.js loader.js:184:9
      Module registered: MMM-SoccerLiveScore module.js:509:6
      Bootstrapping module: MMM-SoccerLiveScore loader.js:155:7
      Scripts loaded for: MMM-SoccerLiveScore loader.js:160:8
      Load stylesheet: modules/MMM-SoccerLiveScore/MMM-SoccerLiveScore.css loader.js:203:9
      Styles loaded for: MMM-SoccerLiveScore loader.js:162:9
      Translations loaded for: MMM-SoccerLiveScore loader.js:164:10
      Starting module MMM-SoccerLiveScore {"leagues":[35,44,491],"displayTime":60000,"showNames":true,"showLogos":true,"showStandings":true,"showTables":true,"showScorers":true,"showDetails":true,"scrollVertical":true,"logosToInvert":[30001132,30000991,30000145]}
      

      the module is from here:

      https://github.com/0m4r/MMM-SoccerLiveScore

      and

      pi@MagicMirror-live:~/MagicMirror/modules/MMM-SoccerLiveScore$ git pull
      Already up to date.
      

      EDIT: Is no one here who can help me?? Anyone here who had install this Module and is going or not going ???

      For last days the module works fine and have no change in the Config. THX

      posted in Troubleshooting
      kusselinK
      kusselin
    • RE: MagicMirror install on LXC Container as a server will not do

      @sdetweil hi, And how do I get it so that the server is always running…
      Isn’t npm run server enough?

      posted in Troubleshooting
      kusselinK
      kusselin
    • MagicMirror install on LXC Container as a server will not do

      Hello everyone, I would like to install the MagicMirror as a server on a Proxmox LXC container…what have I done so far:

      1.New ConLXC container created
      
      1. Ubuntu 24 LTS installed
        3.run apt-get update && apt-get upgrade -y
        4.created new user “MM” with useradd -s /bin/bash -m MM
        5.assign password for MM
      2. add the new user to the group “sudo” with sudo usermod -a -G sudo MM
        7.reboot
        8.logged in with MM and pass
        9.then execute the following command:
      bash -c  "$(curl -sL https://raw.githubusercontent.com/sdetweil/MagicMirror_scripts/master/raspberry.sh)"
      
      

      10.After installation, the following command is executed:

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

      11.then entered cd and I am on

      mm@MagicMirror-live:~$
      

      12.then enter nano mm.sh and insert the following there:

      cd ~/MagicMirror
      npm run server
      
      

      13.Then make the file executable with

      chmod +r ~/mm.sh
      
      
      1. then enter crontab -e and select 1 then enter the last thing at the bottom:
      @reboot /home/pi/mm.sh 
      

      15.then out and reboot made…
      16.to be on the safe side, go to the /MagicMirror directory and run npm run server…then this is what comes out:

      mm@MagicMirror-live:~/MagicMirror$ npm run server
      
      > magicmirror@2.28.0 server
      > node ./serveronly
      
      [2024-08-10 16:51:17.974] [LOG]   Starting MagicMirror: v2.28.0
      [2024-08-10 16:51:17.986] [LOG]   Loading config ...
      [2024-08-10 16:51:17.989] [LOG]   config template file not exists, no envsubst
      [2024-08-10 16:51:18.334] [LOG]   Loading module helpers ...
      [2024-08-10 16:51:18.335] [LOG]   No helper found for module: alert.
      [2024-08-10 16:51:18.343] [LOG]   Initializing new module helper ...
      [2024-08-10 16:51:18.344] [LOG]   Module helper loaded: updatenotification
      [2024-08-10 16:51:18.344] [LOG]   No helper found for module: clock.
      [2024-08-10 16:51:18.561] [LOG]   Initializing new module helper ...
      [2024-08-10 16:51:18.563] [LOG]   Module helper loaded: calendar
      [2024-08-10 16:51:18.565] [LOG]   No helper found for module: compliments.
      [2024-08-10 16:51:18.567] [LOG]   No helper found for module: weather.
      [2024-08-10 16:51:18.568] [LOG]   No helper found for module: weather.
      [2024-08-10 16:51:18.717] [LOG]   Initializing new module helper ...
      [2024-08-10 16:51:18.717] [LOG]   Module helper loaded: newsfeed
      [2024-08-10 16:51:18.718] [LOG]   All module helpers loaded.
      [2024-08-10 16:51:18.724] [LOG]   Starting server on port 8080 ...
      [2024-08-10 16:51:18.746] [LOG]   Server started ...
      [2024-08-10 16:51:18.747] [LOG]   Connecting socket for: updatenotification
      [2024-08-10 16:51:18.747] [LOG]   Starting module helper: updatenotification
      [2024-08-10 16:51:18.748] [LOG]   Connecting socket for: calendar
      [2024-08-10 16:51:18.748] [LOG]   Starting node helper for: calendar
      [2024-08-10 16:51:18.748] [LOG]   Connecting socket for: newsfeed
      [2024-08-10 16:51:18.748] [LOG]   Starting node helper for: newsfeed
      [2024-08-10 16:51:18.749] [LOG]   Sockets connected & modules started ...
      [2024-08-10 16:51:18.749] [INFO]
      >>>   Ready to go! Please point your browser to: http://localhost:8080   <<<
      [2024-08-10 16:51:18.871] [INFO]  System information:
      ### SYSTEM:   manufacturer: ; model: ; raspberry: undefined; virtual: false
      ### OS:       platform: linux; distro: Ubuntu; release: 24.04 LTS; arch: x64; kernel: 6.5.13-3-pve
      ### VERSIONS: electron: undefined; used node: 20.9.0; installed node: 20.9.0; npm: 10.1.0; pm2: 5.4.2
      ### OTHER:    timeZone: UTC; ELECTRON_ENABLE_GPU: undefined
      ^C[2024-08-10 16:51:29.977] [LOG]   [SIGINT] Received. Shutting down server...
      [2024-08-10 16:51:29.977] [LOG]   Stopping module helper: updatenotification
      [2024-08-10 16:51:29.977] [LOG]   Stopping module helper: calendar
      [2024-08-10 16:51:29.977] [LOG]   Stopping module helper: newsfeed
      [2024-08-10 16:51:29.978] [LOG]   Node_helpers stopped ...
      
      

      whats that 😞
      He shuts down the server again… 😞 why ?

      Did I do it wrong again???
      Thanks and greetings

      posted in Troubleshooting
      kusselinK
      kusselin
    • RE: MMM-RNV not sisplaying :-(

      @sdetweil sam, what do you mean about the adress? Ip adress? I dont know what you mean

      posted in Troubleshooting
      kusselinK
      kusselin
    • RE: MMM-RNV not sisplaying :-(

      I did it with copy & paste

      posted in Troubleshooting
      kusselinK
      kusselin
    • MMM-RNV not sisplaying :-(

      Hi, on my MM2 with a raspi pi 3 i have the same config details as my server…
      On my normalyy MM2 with the pi th module MMM-RNV is displaying all but with the same config on my MM server on a NUC the module is notworking :-(

      always comes the message “RNV Abfahrtsmonitor -> No API credentials provided”
      Here my config fpor both systems:

      {
      		  module: 'MMM-RNV',
      		  header: 'RNV Abfahrstmonitor',
      		  position: 'bottom_right',
      		  config: {
      			updateInterval: "60000",
      			animationSpeed: "2000",
      			stationID: "1160", // HD-Bahnhof
      			numJourneys: "10",
      			clientID: 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxeb1462d977c8',
      			tenantID: '87cd3xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx16c9',
      			clientSecret: 'zxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1',
      			resourceID: '148xxxxxxxxxxxxxxxxxxxxxxxxxxxf',
      			coloredLines: "true",
      			showLineIcons: "true",
      			useColorForRealTimeInfo: "true",
      			showTableHeader: "true",
      		  }
      		},
      

      Has anyone an answer?
      Thanks an best regards

      here with pi3 and O.K.
      Image 001.png

      and here as “SERVER” on a proxmox LXC Container:
      image1.jpeg

      posted in Troubleshooting
      kusselinK
      kusselin
    • RE: MagicMirror install on proxmox LXC Container?

      Hi sam,

      This was my Solution Now

      https://forum.iobroker.net/topic/52195/magic-mirror-zusammen-mit-iobroker/173?_=1666207319057

      Crontab

      posted in Troubleshooting
      kusselinK
      kusselin
    • RE: MagicMirror install on proxmox LXC Container?

      @wishmaster270 said in MagicMirror install on proxmox LXC Container?:

      @kusselin
      Hi,

      if your problem is only to keep the command running while/after you disconnected to the container you can use the “screen” command.
      It you should be installed with Ubuntu already. If not you can install it with

      sudo apt update && sudo apt install -y screen
      

      You then start a new screen with

      screen -S NAME
      

      while NAME is simply an alias and could be something like “mm”.

      After this you can start the mirror with

      npm run server
      

      And you can leave the screen with the keyboard combination

      CRTL+ad
      

      The screen then keeps running. If you want the resume to the screen you can use

      screen -r NAME
      

      And what about this… yesterday i installed screen and i Type the Commander in putty and the Containers was already online…

      Now, After an reboot Nottingham is Gong :-(

      posted in Troubleshooting
      kusselinK
      kusselin
    • RE: MagicMirror install on proxmox LXC Container?

      @sdetweil said in MagicMirror install on proxmox LXC Container?:

      @kusselin and typically you would setup the container to run MM inside without user intervention… so none of those commands would be needed

      Hi sam, unfortunately I have not yet understood why the server always stops when closing putty???

      With the command npm run server I start the server… why does the container stop again?

      posted in Troubleshooting
      kusselinK
      kusselin
    • 1
    • 2
    • 5
    • 6
    • 7
    • 8
    • 9
    • 27
    • 28
    • 7 / 28