Skip to main content

Rasperry Pi stuck on login-screen / not booting

Symptoms

A Raspberry Pi with the default Rasbpian or Ubuntu Mate operating system isn't booting / is stuck on the login-screen after boot.

Related symptoms

  • -

Details

The issue can be recognized when, after a reboot, the system doesn't automatically log in, but it stuck on the login-screen instead and asks for a password in order to login/continue, like in the example image below:

image.png

Cause

This issue might by caused by a fill disk. When the disk is full, the Raspberry doesn't boot properly anymore. Also additional services like Teamviewer, AnyDesk or VND won't be started and thefefore, the system is completely out of reach. SSH might be the only option to login onto the system remotely.

Solution / Resolution / How To

Login onto the Raspberry PI using SSH, for example using PuTTY.


Use command below to check if the disk is full. If so, continue with the next step.

df -h

In the example image, we'll see there are 0 bytes/there's 100% in use, indicating the disk is full.

image.png

Use the command below to find out which directory takes up the most space.

du -h / | grep -E "[0-9]G"

In the example image, we'll see that the directory "/home/pi/.config/chromium/Default/Extensions/cjpalhdlnbpafiamejdnhcphjbkeiagm" is taking up too much space.

 

image.png


 

 


References