A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Fork Mode
-
@sdetweil Oh, nice. That’s a good tip. Thanks!
-
installers/mm.sh &
That doesn’t seem to work:
~/MagicMirror $ installers/mm.sh & [1] 11788 > magicmirror@2.28.0 start > ./run-start.sh $1 [2024-08-04 16:01:09.618] [LOG] Starting MagicMirror: v2.28.0 [2024-08-04 16:01:10.764] [LOG] Loading config ... [2024-08-04 16:01:10.845] [LOG] config template file not exists, no envsubst [2024-08-04 16:01:17.539] [LOG] Loading module helpers ... [2024-08-04 16:01:17.705] [LOG] No helper found for module: alert. [2024-08-04 16:01:19.196] [LOG] Initializing new module helper ... [2024-08-04 16:01:19.283] [LOG] Module helper loaded: updatenotification [2024-08-04 16:01:19.535] [LOG] No helper found for module: clock. [2024-08-04 16:01:20.029] [LOG] Initializing new module helper ... [2024-08-04 16:01:20.278] [LOG] Module helper loaded: mmm-systemtemperature [2024-08-04 16:01:20.396] [LOG] No helper found for module: weather. [2024-08-04 16:01:20.554] [LOG] No helper found for module: weather. [2024-08-04 16:01:27.632] [LOG] Initializing new module helper ... [2024-08-04 16:01:27.767] [LOG] Module helper loaded: MMM-ThemeParkWaitTimes [2024-08-04 16:01:30.552] [LOG] Initializing new module helper ... [2024-08-04 16:01:30.603] [LOG] Module helper loaded: MMM-birthdays [2024-08-04 16:01:30.714] [LOG] No helper found for module: MMM-CloneWarsQuotes. [2024-08-04 16:01:30.761] [LOG] Initializing new module helper ... [2024-08-04 16:01:30.854] [LOG] Module helper loaded: MMM-ThemeParkWaitTimes [2024-08-04 16:01:31.469] [LOG] Initializing new module helper ... [2024-08-04 16:01:31.526] [LOG] Module helper loaded: MMM-ImagesPhotos [2024-08-04 16:01:31.561] [LOG] All module helpers loaded. [2024-08-04 16:01:32.866] [LOG] Starting server on port 8080 ... [2024-08-04 16:01:33.567] [WARN] You're using a full whitelist configuration to allow for all IPs [2024-08-04 16:01:35.645] [LOG] Server started ...
It is still returning all the reporting to Terminal.
-
@davidgagne yes, as the starting shell is still open, output is spooled there,
BUT you can exit the window AND it will stay running… the output will be lost…
(thats the value of pm2 spawning… it captures the output)if you get it running in the background, without pm2, then two ways to kill it
reboot
or run a kill script like thisps -ef | grep MagicMirror | awk '{print $2}'| xargs sudo kill -9
for info , the steps
list the processes and their program path
find the ones with MagicMirror
print out just the process number
sudo kill -9 the process number -
@sdetweil Oh. So just close that Terminal window and ssh into it again, you mean?
-
@davidgagne yes