Reputation: 580
I don’t know what happened but my raspberry pi won’t boot up to a GUI anymore. All I get is a command line with a picture that says welcome to the raspberry pi desktop. Any idea what went wrong? This is my screen.
Upvotes: 0
Views: 5480
Reputation: 453
Apparently, your Raspberry PI disk is full and there is not enough space to start LXDE.
You can try deleting files from your home directory and also trying to find other kind of files like big Log files. You can use the following command to find files bigger than a certain amount of MB:
find /home/ -type f -size +50M
The command above will list files bigger than 50MB
Upvotes: 1