My laptop was running ubuntu 20.04 and windows 10 in dual boot mode. Yesterday ubuntu asked for an update. So I updated it from 20.04 LTS to 20.10 the update was automatic. After finishing update it asked me to restart. I have restarted and now there is a black screen. Windows 10 is loading. But when I click ubuntu this black screen comes. I am confused what to do next.
Asked
Active
Viewed 436 times
0
1 Answers
0
After you log in and get a terminal.
First, try typing exit
and then press ENTER.
If it does the same thing, follow the instructions to reboot. You can either run:
sudo reboot
or
systemctl reboot
If you still get the same thing, review the journalctl errors by running the following command and post those to your question:
journalctl -xb
The last thing I would suggest would be to run the following commands to finish any unfinished updates:
sudo apt update
sudo apt dist-upgrade
Then, reboot.
Please post any errors.

mchid
- 43,546
- 8
- 97
- 150
exit
and then press ENTER. If it does the same thing, follow the instructions to reboot. If you still get the same thing, review the journalctl errors and post those to your question. – mchid Nov 13 '20 at 08:46journalctl -xb
says (the errors are usually in red). – mchid Nov 13 '20 at 14:04