@LincolnClay before reinstalling did you delete MagicMirror directory from /home/pi
directory? I just want to make sure that your pi
user has full access to files inside of MagicMirror directory. You can check who owns MagicMirror directory by running following command in the terminal:
ls -l /home/$USER
which will give you output similar to this:
drwxr-xr-x 2 pi 4.0K Jan 21 14:30 foo/
drwxr-xr-x 2 root 4.0K Jan 21 14:31 foo1/
drwxr-xr-x 14 pi 4.0K Jan 8 14:52 MagicMirror/
as you can see in the example above directory foo
and MagicMirror
are owned by pi
user and foo1
is owned by root
. To change ownership from root
to pi
this command needs to be executed (in the example below it will change ownership of foo1
directory from root
to currently logged in user):
sudo chown -R $USER /home/$USER/foo1/
basically it does translates to this: Running as root user (one who currently owns foo1
directory and has write permissions) change owner (‘chown’) recursively (-R
) to currently logged in user ($USER
which is pi
in our case) for directory foo1
. After running this command foo1
will belong to pi
and running ls -l /home/$USER
should produce results similar to this:
drwxr-xr-x 2 pi 4.0K Jan 21 14:30 foo/
drwxr-xr-x 2 pi 4.0K Jan 21 14:31 foo1/
drwxr-xr-x 14 pi 4.0K Jan 8 14:52 MagicMirror/
QUESTION: When you changed /home/pi/MagicMirror/config/config.js
did you actually save that file? I’m trying to understand what you mean by “I get the standard info displayed on MM” Does it show default settings? Did it ever show info with your local weather?
I also see some Xlib: errors or warnings in your logs and I have no idea where that coming from.
P.S. It maybe worth opening your own thread with exact steps that you already did for easier troubleshooting and not to highjack another thread.