Read the statement by Michael Teeuw here.
Black Screen after Booting Up
-
@nickymac12 ok. Try installing the sample config file.
Type:cd ~/MagicMirror/config
mv config.js config.js.bak
(this will back up your existing config)cp config.js.sample config.js
pm2 restart mm
If magic mirror starts, then you either have a problem with your config or with a module.
-
So, unfortunately, I only had an 8gb sd card so I used that in my Pi and it is full so it will not write config.js.sample because there is not enough room…
-
@nickymac12 Aha! I’d say that might be your problem. See if you can free up some space, then restore your config file, and restart MM
-
Oh! How can I clear up space remotely?
-
@nickymac12 you can delete files with the
rm
command. Be careful with this, because it can’t be undone.Say you wanted to delete some pictures you have in a folder in you home directory. Navigate to that directory like so:
cd ~/photo-directory-name
(whatever the folder name might be)rm file-name.jpg
(this will permanently delete the file)You can remove entire directories with the
-r
switch. Example:rm -r directory-name
And be sure to double-check your typing before you hit enter. deleting things this way is not recoverable.
-
Is there a way to see what directories or files I have so I know what I can delete?
-
@nickymac12 yes.
Use the
ls
command to see a list of files in the current directoryuse the
cd
command to enter a directory e.g.:cd directory-name
use the the command
cd ..
to go back up to the parent directorythe
pwd
command will tell show the path to the current directorycd ~
will take you your home directory -
how would I restore my config file? Sorry I am new to using terminal and don’t really know all the commands.
-
@nickymac12 type:
cd ~/MagicMirror/config
(Takes you to the MM config directory)mv config.js.bak config.js
(Restores your config file)pm2 restart mm
(restarts MagicMirror) -
@j.e.f.f said in Black Screen after Booting Up:
@nickymac12 ok. Try installing the sample config file.
Type:cd ~/MagicMirror/config
mv config.js config.js.bak
(this will back up your existing config)cp config.js.sample config.js
pm2 restart mm
If magic mirror starts, then you either have a problem with your config or with a module.
I checked the sample config. No other modules installed only the original. But i still have a blank screen…
What would you propose?