@PhilsterM9 Hi again, maybe I’m missing something…
If you followed the install guide when you installed…
When you SSH in to your Pi (or open a terminal on the desktop of the pi) you should end up in a prompt looking like this:
pi@MagicMirror:~ $
Now, type as follows:
pi@MagicMirror:~ $ cd MagicMirror/config/
You should now be in MagicMirror/config/ looking like this:
pi@MagicMirror:~/MagicMirror/config $
To copy a file enter:
pi@MagicMirror:~/MagicMirror/config $ cp config.js.sample config.js
Check if the files where copied with ls both file should be there now:
pi@MagicMirror:~/MagicMirror/config $ ls
Listed like this:
config.js config.js.sample
Now, if you want you can edit your config file:
pi@MagicMirror:~/MagicMirror/config $ nano config.js
Change whatever you need to change…
But you actually don’t have to change anything just for testing it.
Now restart the MagicMirror with pm2 like this:
pi@MagicMirror:~/MagicMirror/config $ pm2 restart mm
You should se something like this:
Restarts are now immutable, to update environment or conf use --update-env
[PM2] Applying action restartProcessId on app [mm](ids: 0)
[PM2] [mm](0) ✓
┌──────────┬────┬──────┬───────┬────────┬─────────┬────────┬─────┬──────────┬──────────┐
│ App name │ id │ mode │ pid │ status │ restart │ uptime │ cpu │ mem │ watching │
├──────────┼────┼──────┼───────┼────────┼─────────┼────────┼─────┼──────────┼──────────┤
│ mm │ 0 │ fork │ 26361 │ online │ 32 │ 0s │ 22% │ 2.3 MB │ disabled │
└──────────┴────┴──────┴───────┴────────┴─────────┴────────┴─────┴──────────┴──────────┘
Use `pm2 show ` to get more details about an app
pi@MagicMirror:~/MagicMirror/config $
And your Magic should have started. :)