I am using Ubuntu from last month, but today I tried to boot it and it get stuck at the logo screen I also disabled fast startup and secure boot ,also I add nomodeset but nothing actually improved.
1 Answers
Yesterday's software update in Ubuntu 20.04 updated nvidia-driver-450 to nvidia-driver-460. Yesterday's software update also updated all of the Nvidia 450 series packages from 450 to 460. The following commands will install the recommended proprietary Nvidia graphics driver in Ubuntu 20.04.
Remove all the nvidia packages.
sudo apt update sudo apt-get remove '^nvidia' sudo apt autoremoveIf you have added an Nvidia PPA to
/etc/apt/sources.listremove that PPA by prefacing its line in sources.list with a#to comment it out. Runsudo apt updateto refresh the list of available software.Reboot with
sudo rebootRun the following commands to install the recommended proprietary Nvidia graphics driver.
sudo ubuntu-drivers install sudo reboot
If automatically installing the recommended proprietary Nvidia graphics drivers doesn't work, try reverting them back to an earlier version like nvidia-driver-450 or nvidia-driver-435.
If the above 4 steps don't work, the other possibility is that the boot problem is caused by a kernel update in Ubuntu 20.04 that has generated several questions at Ask Ubuntu in recent days and is answered in this answer.
- 122,292
- 133
- 301
- 332