Installing Nvidia drivers in Ubuntu
In this tutorial, I am going to show you how to install the latest Nvidia drivers for your Linux desktop in a few steps. I ’ ll besides see how to remove it should things not work out as expected. 1. Determine the latest adaptation of Nvidia driver available for your graphics card
Nvidia PPA
a. Visit the graphics drivers PPA home page here and determine the latest versions of Nvidia drivers available which is ‘ nvidia-390 ’ as of March 1, 2021. b. Verify that your graphics card is capable of running the latest drivers. You can search on this connect to determine if your graphics poster is supported by a driver translation. Don ’ thymine be so particular about the adaptation part after the acid ( after nvidia-390.xxx ), precisely make sure you ’ ra supported on the chief version 390.2. Remove older Nvidia driver If your graphic is supported, you can go ahead and remove all previously installed Nvidia drivers on your system. Enter the following command in the terminal .
sudo apt-get purge nvidia*
3. Add the graphics drivers PPA Let us go ahead and add the graphics-driver PPA –
sudo add-apt-repository ppa:graphics-drivers
sudo apt-get update
4. Install ( and activate ) the latest Nvidia artwork drivers. Enter the following command to install the version of Nvidia graphics supported by your graphics card –
sudo apt-get install nvidia-390
5. Reboot your calculator for the raw driver to kick-in. You can check your installation status with the stick to command
lsmod | grep nvidia
If there is no output, then your facility has probably failed. It is besides possible that the driver is not available in your system ’ s driver database. You can run the follow command to check if your system is running on the open source driver nouveau. If the output is minus for nouveau, then all is well with your initiation .
lsmod | grep nouveau
6. Prevent automatic updates that might break the drivers. You can do this in 2 ways – a. By removing the graphics-drivers PPA from your software sourcesThis will depend on your distro. On Ubuntu, go to your software sources, and then other sources and remove all instances of the graphics-driver PPAs.
Read more: How to Install Java on Windows 11?
b-complex vitamin. Or by blocking minor adaptation updates. Enter the pursuit command
sudo apt-mark hold nvidia-390
7. Uninstall nvidia drivers from Ubuntu
Are you running into issues with the new drivers, you can well remove it. a. Remove the graphics-drivers PPA as indicated in the step above. b. Enter the following command to completely remove the driver
sudo apt-get purge nvidia*
c. Reboot your personal computer for the open-source nouveau drivers to kick-in .
Upgrading nvidia drivers in Ubuntu
once you add ppa to your system and install drivers, you ’ ll mechanically receive updates once they ’ re made available in the PPA. then keep update system to get the latest updates .
sudo apt update
sudo apt upgrade
Install Nvidia drivers In Fedora
If you are using Fedora 29, Fedora 28 or Fedora 27 then follow this tutorial. If you are using any other version, try it out and let me know if it worked or not. I have not tested it on older versions of Fedora. For Ubuntu or derivatives, it was very easy to install through PPA. But in Fedora, we will download binary star files and install Nvidia drivers. So you must download the adjust drivers for your graphics card otherwise, it will not work. Check your Nvidia graphics calling card –
lspci |grep -E "VGA|3D"
This dominate will show your machine ’ sulfur graphics menu information .
01:00.0 VGA compatible controller: NVIDIA Corporation GP107 [GeForce GTX 1050 Ti] (rev a1)
Download Nvidia drivers
Make the setup file executable
chmod +x NVIDIA-Linux-x86_64-418.56.run
Update system and reboot
dnf update
Install dependencies
dnf install kernel-devel kernel-headers gcc make dkms acpid libglvnd-glx libglvnd-opengl libglvnd-devel pkgconfig
Disable open-source Nouveau drivers
Edit /etc/modprobe.d/blacklist.conf
& at last, past the pursuit argumentation to disable nouveau drivers –
blacklist nouveau
Edit grub file /etc/sysconfig/grub
Type ‘ rd.driver.blacklist=nouveau
’ at the end of ‘ GRUB_CMDLINE_LINUX= ” … ” ‘ .
GRUB_CMDLINE_LINUX="rd.lvm.lv=fedora/swap rd.lvm.lv=fedora/root rhgb quiet rd.driver.blacklist=nouveau"
For BIOS
grub2-mkconfig -o /boot/grub2/grub.cfg
For UEFI
grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg
Uninstall open-source Nouveau drivers
dnf remove xorg-x11-drv-nouveau
Create initramfs
backup old initramfs
mv /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r)-nouveau.img
create new initramfs
dracut /boot/initramfs-$(uname -r).img $(uname -r)
Reboot system
systemctl set-default multi-user.target
reboot
Install Nvidia drivers in Fedora
./NVIDIA-Linux-x86_64-418.56.run
nowadays follow the simple apparatus to install and configure Nvidia drivers in the fedora system.Thanks for reading, hope you find this tutorial utilitarian. Share your think with us in the comments .