Installed 20.04 but boot fails, stalling at the spinning wheel icon.
I must restart 2-3 times to boot into my system.
What could be the problem?
Installed 20.04 but boot fails, stalling at the spinning wheel icon.
I must restart 2-3 times to boot into my system.
What could be the problem?
I suspect the LiveUSB used to install Ubuntu 20.04 may have been installed with a corrupted download.
Please redownload Ubuntu's ISO file at https://ubuntu.com/download
or for a supported 'flavour' with a different Desktop Environment, download from https://ubuntu.com/download/flavours .
Next, check for download errors by https://tutorials.ubuntu.com/tutorial/tutorial-how-to-verify-ubuntu .
Make a new LiveUSB following these instructions on another Linux PC or on a Windows PC .
Once you make a LiveUSB, install it following these steps https://tutorials.ubuntu.com/tutorial/tutorial-install-ubuntu-desktop
I had the same problem. A possible cause could be that the .iso file didn't download properly. I downloaded the .iso file again and it worked out this time.
I run a dualboot system Ubuntu 20.04/ Windows 10.
I encountered the same conditions here. Having verified the hash of the .iso before using Rufus to create a LiveUSB, I think I can rule out a corrupted download.
This fix worked like a charm: https://www.stephenwagner.com/2019/05/05/ubuntu-linux-black-screen-frozen-system-after-upgrade-install/
Temporary Fix
To get the system to boot:
- After turning on your PC, hold the right SHIFT key to get to the GRUB bootloader if your computer uses a BIOS. If your computer uses EFI or UEFI, continuously tap the ESC (escape) key after turning on your PC.
- Once GRUB is open, press the e key to edit the first highlighted entry “Ubuntu”.
- Move your cursor down to the line that starts with
linux
, and use the right arrow key to find the section with the wordsro quiet splash
.- Add
nomodeset
after these words.- Feel free to remove
quiet
andsplash
for more verbosity to troubleshoot the boot process.- Press CTRL + X or F10 to boot.
- The system should now boot.
Permanent Fix
To permanently resolve the issue:
Once the system has booted using the temporary fix, log in.
Open a terminal window (Applications -> Terminal, or press the “Start” button and type terminal).
[...] Use
sudo
to open your favorite text editor and edit the file/etc/default/grub
sudo nano /etc/default/grub
Locate the line with the variable
GRUB_CMDLINE_LINUX_DEFAULT
, and addnomodeset
to the variables. Feel free to removesplash
andquiet
if you’d like text boot. Here’s an example of my line after editing (yours may look different):GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset"
Save the file and exit the text editor (CTRL+X to quit, the press y and enter to save).
At the bash prompt, execute the following command to regenerate the
grub.conf
file in/boot
from your new default file:sudo update-grub
Restart your system, it should now boot!
Please Note: Always make sure you have a full system backup before modifying any system files!