I have recently built a new PC on which I installed Ubuntu 18.04.2 LTS alongside windows (dual-boot). After trying to update the Nvidia driver using the following command:
sudo apt-get install nvidia-331
which I found here, I have had a black screen when trying to boot to Ubuntu ever since (straight after the GRUB menu).
I have seen many posts out there about people having problems with Nvidia drivers, so it seems I'm far from alone. Besides, there have already been a lot of useful answers/suggestions provided, so I don't want to add yet another question on the subject itself (I will take the time to read and try out the different suggestions once I solve my present problem).
My problem is that I cannot get past the first step to try any of these solutions out, which is being able to access a terminal.
I have tried several things which I gathered from different posts (e.g. here):
Ctrl + Alt + F1
: Nothing hapened.- Highlight the Ubuntu option and press E.
Add
nouveau.modeset=0
to the end of the line beginning with linux. Press F10 to boot : after F10 I got a flash (for like a second) of an ultra-low resolution command terminal (with very fast successive commands) then it became black. - Similarly, replace
quiet splash
withnomodeset
, and boot with F10: same result.
Any ideas of what else I can try to show up a terminal?
Or do I need to reinstall Ubuntu if none of these options work? If so, any links to material that explains how to do that (I have never had to uninstall it before).
Some info on my PC specs, in case it helps:
- CPU: Ryzen 7 2700X
- Motherboard: Asus ROG STRIX X470-F GAMING
- GPU: NVidia Geforce RTX 2070
I'm posting an answer to my question as I managed to solve the problem (thanks to the AskUbuntu community). This may not be a completely generic answer, but I will explain the steps which I followed in case it helps someone else. Here's how I did it:
1. Connecting to a terminal
I followed the instructions to edit the commands before booting, namely replacing
quiet splash
withnomodeset
and then pressingF10
orCtrl+X
to boot (instructions are provided here). After I booted, I pressedCtrl+Alt+F1
,Ctrl+Alt+F6
andCtrl+Alt+F7
repeatedly one after the other. After several tries (had to reboot and retry several times), I eventually got a terminal with ultra low resolution where I had to enter my login and password, which I did.2. Uninstalling the wrong Nvidia driver
I used the command provided by Marmayogi to uninstall the incorrect Nvidia driver:
sudo apt-get purge nvidia*
The next time I rebooted Ubuntu, I was able to access the login page and GUI in ultra low resolution, like before I installed the wrong Nvidia driver.
3. Installing the correct Nvidia driver
Here I followed the instructions provided by Marmayogi in his comment to my question, except for the installation command of the Nvidia driver which was incorrect as it has changed (see the answer by Kerry Kobashi in this post for details):
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get update
sudo apt-get install nvidia-driver-410
(this is the new command, also check version number of driver first!)After rebooting the GUI was in a normal resolution (except GRUB which was still in low resolution, but it's less of a problem). To check that everything went well, I issued the following command:
lsmod | grep nvidia
, and there was output, so the installation was successful.Here I am want to stress out that you need to check which version of the Nvidia driver you need (i.e. which is compatible with your graphics card). You can check on the Nvidia website which products are supported by each driver (the latest one is usually the best if you have a recent graphics card). Not doing so and blindly following instructions in another post which did not specify this is what led me to having all these problems in the first place (unfortunately, this point is too often ignored in a lot of posts I've seen on the subject). Also when choosing the version, I read somewhere that you only need to write the main version (don't bother about the number after the point, so if latest driver is 418.56, just write 418).
Step-1: Obviously starting with an update and upgrade
Step-2: Then remove all Nvidia packages (skip this if your OS is fresh installed) :
Step-3: Install these packages for building the kernel:
Step-4: Now block and disable Nouveau kernel driver:
To list the contents of the
/etc/modprobe.d/blacklist-nouveau.conf
file, issue the following command:$ cat /etc/modprobe.d/blacklist-nouveau.conf
Figure-1: Contents of blacklist-nouveau.conf file
Step-5: Disable the Kernel mode setting (KMS) by issuing this command:
To list the contents of the
/etc/modprobe.d/nouveau-kms.conf
file, issue the following command:$ cat /etc/modprobe.d/nouveau-kms.conf
Figure-2: Contents of nouveau-kms.conf file
Note: FYI, the file
nouveau-kms.conf
may not exist.Step-6: Enter the following linux command to regenerate the kernel initramfs:
$ sudo update-initramfs -u
Step-7: Reboot the system.
Step-8: After the reboot you need to exit the X Server, for that we need to stop LightDM, press
Ctrl+Alt+F1
to open up a console screen, log in with your user and password, after that:$ sudo service lightdm stop
Step-9: Now install your Nvidia driver:
$ sudo apt-get install nvidia-VERSION
Note: The value of
nvidia-VERSION
could benvidia-410
,nvidia-412
,nvidia-418
, and so on, but you must be careful in locating correct Nvidia Display Driver. Ignoring this, may result in blank screen upon reboot.Step-10: Reboot the system.
Step-11: To show which loadable kernel modules are currently loaded, issue the following command:
$ lsmod | grep nvidia
If there is an output, then the installation of
nvidia
is successful!Step-12: Now issue the following command to know which display driver is loaded:
$ sudo lshw -c video | grep 'configuration'
Figure-3: Display driver i915 has been loaded (This desktop does not have Nvidia GPU).
I encountered the same issue on my Ubuntu 20.04. Also I figured out that nvidia-driver-4xx will result in this issue, and the latest-known-good driver is nvidia-driver-390.
So my workaround is installing nvidia-driver-390 instead of the latest one.
Press ctl+alt+F1. (cannot see the screen but we can actually change to tty1)
ctl+alt+del to reboot, and select advance -> recovery mode
Firstly enable network, and select resume to boot into GUI, then select and install nvidia-driver-390.
After reboot, you should be able to enter your desktop.
I was having a black screen after messing up with Nvidia drivers (probably I uninstall the drivers). I have tried several options as follows without success (e.g. here):
Ctrl + Alt + F1
: Nothing happened. Then I triedCtrl + Alt + F6
i got the terminal but couldn't execute any command as I received flashes of commands after every few second with something likeWatchdog : BUG : soft lockup #CPU0 stuck for 23s!
Made changes from the file after pressing E including Add
nouveau.modeset=0
at the end on a text starting with Linux. Also replacedquiet splash
withnomodeset
and reboot usingF10
but still same problem.I followed here, here and here but did not help.
SOLUTION I FOUND AND WORKED FOR ME
Taken from here
advanced ubuntu for ubuntu menu
recovery mode
root
in which the terminal appears at the bottom (indicating topress D
)sudo apt-get remove --purge nvidia-*
reboot
after rebooting I was back to the normal login screenI had a similar problem. I blacklisted the Nouveu driver, then could not get a display. I used an ssh client from another machine on my network, and ran the installer fr my NVidia driver from there. one reboot later, and I was in!
After installing connect to internet, open Terminal and type:
sudo apt-get update
(do not upgrade).Install ukuu (Kernel Update Utility)
sudo apt-add-repository -y ppa:teejee2008/ppa sudo apt-get update sudo apt-get install ukuu
Update Kernel from 4.18 to 5.0.6 (the latest stable Kernel you can check here, or you can downgrade your Kernel to v4.15.x if you want)
I've created bug report @bugs.launchpad.net so you can add your info too.
I prefer to install nvidia driver from default Ubuntu app 'Software & Updates'-> Additional Drivers->choose Nvidia->apply. Reboot. You can check your driver version by
nvidia-smi
command in terminal. For me it's 390.116I had the same problem and nothing helped me. The only thing i did and it works i described above.
seems the problem is in Kernel v4.18.x, v4.20.x (that's i tested for my hardware on different OS's and Kernels. Everything still work okay on Kernel v4.15.x, so if you want you can use it instead of 5.0.6)
Did the trick for me in ubuntu20.04, kernel 5.4.0-58-generic