Read the statement by Michael Teeuw here.
I'm lost
-
Hello ,
I’m extremely new to this forum ,but i need alot of help starting the MM. While try to run the software i rann across this error :
PM2] Init System found: systemd
Platform systemd
Template
[Unit]
Description=PM2 process manager
Documentation=https://pm2.keymetrics.io/
After=network.target[Service]
Type=forking
User=pi
LimitNOFILE=infinity
LimitNPROC=infinity
LimitCORE=infinity
Environment=PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/games:/usr/games:/usr/bin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin
Environment=PM2_HOME=/home/pi/.pm2
PIDFile=/home/pi/.pm2/pm2.pid
Restart=on-failureExecStart=/usr/lib/node_modules/pm2/bin/pm2 resurrect
ExecReload=/usr/lib/node_modules/pm2/bin/pm2 reload all
ExecStop=/usr/lib/node_modules/pm2/bin/pm2 kill[Install]
WantedBy=multi-user.target -
@Techgator2 I don’t see an error there… I see the PM2 config for some task
-
@sdetweil Honestly I think uninstall Mm and starting over is my best option. Please advise how to delete the current software off a Raspberry pi 3 b .
-
@Techgator2 from your home folder do
rm -rf MagicMirror
but you shouldn’t need to…
after the git clone, you did npm install from the MagicMirror folder and then npm start to start it.
right?
-
I’m unsure .
-
After inputting the command ls . It listed the insall app as Magim2 . Not sure why but i believe that’s the magic mirror file but somenow its been rename . how do I delete and start fresh ?
please explain in K.I.S.S format. -
# go to home folder cd ~ # erase old installation of MagicMirror rm -rf MagicMirror # get the current MagicMirror repo here git clone https://github.com/MichMich/MagicMirror.git # change into its directory cd MagicMirror # install all the dependencies npm install # start mirror with default config npm start