Skip to content

Instantly share code, notes, and snippets.

@jansanchez
Last active February 28, 2024 00:27
Show Gist options
  • Save jansanchez/ce5b0ca1c5e538f4b266 to your computer and use it in GitHub Desktop.
Save jansanchez/ce5b0ca1c5e538f4b266 to your computer and use it in GitHub Desktop.
How to install NVIDIA video drivers in Elementary OS

First, download driver.

http://www.nvidia.com/download/driverResults.aspx/82252/en-us

To be able to install your nvidia driver you have to remove your previous video driver with this code in a terminal window:

sudo apt-get remove nvidia* && sudo apt-get autoremove

After you finish with this one, you should also blacklist the nouveau driver by editing this file with either:

sudo vim /etc/modprobe.d/blacklist-nouveau.conf

And add these lines at the end:

blacklist nouveau
blacklist lbm-nouveau
options nouveau modeset=0
alias nouveau off
alias lbm-nouveau off

If, by any chance, there is no blacklist-nouveau.conf present in /etc/modprobe.d/, you can save your file as blacklist-nouveau.conf when prompted.

And you can also disable the Kernel Nouveau by typing these lines in a terminal window:

echo options nouveau modeset=0 | sudo tee -a /etc/modprobe.d/nouveau-kms.conf

and after that

update-initramfs -u

Now you can reboot your computer, and when you get to the login prompt, press Ctrl+Alt+F1 to exit to the terminal console. Login with your username and password.

Go to the directory where you saved your nvidia driver using the command cd in the terminal console. Eg. cd nvidia considering that you are already in your user home directory after you login. You can use command dir to be able to see your exact driver's name.

To stop your display manager or the X server, you can type in the console this code:

sudo stop lightdm

Or

sudo lightdm stop

If you are not using lightdm as your default display manager (DM), replace lightdm with your default display manager, which can be either kdm or gdm or whatever your display manager is.

You should get a message in the terminal console saying --> lightdm stopped/waiting

And now you can finally install the nvidia driver using a code similar to this one:

sudo sh NVIDIA-Linux-x86_64.....run    (for Ubuntu 64bit)  
sudo nvidia-xconfig

to save your new nvidia configuration in /etc/X11/xorg.conf.

You might need to install some extra software packages if nvidia installer gives an error and prompts for missing dependencies:

sudo apt-get install dkms fakeroot build-essential linux-headers-generic

But you need to install all these missing packages only if nvidia-installer can't do the job by itself.

@devopsifi
Copy link

Hi, I have tried all the possible solution out there, but just want to confirm some concerns before proceeding with this one. Apparently, with my current installation of nvidia driver is causing alot of freezing problems. I install it it runs fine for 5 minutes and the display hangs and leaves the entire system unresponsive. It happened with all of the previous versions of nvidia drivers as well. Please, help me guide how can i properly install this driver so that I can actually use it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment