2 Ways to Install Nvidia Driver on Ubuntu 22.04 (GUI & Command Line) (2024)

This tutorial will be showing you 2 ways to install Nvidia graphics card driver on Ubuntu 22.04/20.04. The first method uses graphical user interface (GUI); The second method is done from the command-line interface (CLI). Ubuntu comes with the open-source nouveau driver which is included in the Linux kernel for Nvidia cards. However, this driver lacks 3D acceleration support. If you are a gamer or need to work with 3D graphics, then you will benefit from the better performance of the proprietary Nvidia driver.

Note: Before installing the proprietary driver, I recommend disabling secure boot if you are using UEFI firmware. If secure boot is enabled, you might encounter problems after installing Nvidia driver. This tutorial also assumes that you are running Ubuntu 22.04/20.04 with x.org display server.

This tutorial also works for Linux Mint.

How to Install Nvidia Graphics Driver on Ubuntu 22.04/20.04 From Graphical User Interface

First, go to Settings >About and check what graphics card your computer is using. As you can see, my computer is using Nvidia graphics card and the Nouveau driver (NV132). On some computers, the integrated graphics card (Intel HD Graphics) might be used.

2 Ways to Install Nvidia Driver on Ubuntu 22.04 (GUI & Command Line) (1)

Then open the softare & updates program from your application menu. Click the additional drivers tab. You can see what driver is being used for Nvidia card (Nouveau by default) and a list of proprietary drivers.

2 Ways to Install Nvidia Driver on Ubuntu 22.04 (GUI & Command Line) (2)

As you can see, the following Nvidia drivers are available for my GeForce GTX 1080 Ti card.

  • nvidia-driver-470 (tested)
  • nvidia-driver-460
  • nvidia-driver-495

If you read this article at a later time, you might have newer version of Nvidia drivers. Since nvidia-driver-470 is a tested version, so I select the first option to install nvidia-driver-470. Click the Apply Changes button to install the driver.

2 Ways to Install Nvidia Driver on Ubuntu 22.04 (GUI & Command Line) (3)

After it’s installed, reboot your computer for the change to take effect. After that, go to Settings > About, you will see Ubuntu is using Nvidia graphics card.

2 Ways to Install Nvidia Driver on Ubuntu 22.04 (GUI & Command Line) (4)

If you want Ubuntu to use Intel graphics card, openNvidia X Server Settings from the application menu. ClickPRIME Profilestab on the left pane, and then select Intel card on the right pane.

2 Ways to Install Nvidia Driver on Ubuntu 22.04 (GUI & Command Line) (5)

To switch back to Nvidia card, simply select NVIDIA inPRIME Profiles. In the Thermal Settings, you can check your GPU temperature.

How to Install Nvidia Driver on Ubuntu 22.04/20.04 From the Command Line

First, open up a terminal window and check which driver is being used for Nvidia card with the following command.

sudo lshw -c display

You can also use video instead of display as the class name.

sudo lshw -c video

By default, the open-source nouveau driver is being used for Nvidia card.

2 Ways to Install Nvidia Driver on Ubuntu 22.04 (GUI & Command Line) (6)

Next, run the following command to list available drivers for your Nvidia card from the default Ubuntu repository.

sudo ubuntu-drivers devices

2 Ways to Install Nvidia Driver on Ubuntu 22.04 (GUI & Command Line) (7)

As you can see, there are 3 drivers available for my GeForce GTX 1080 Ti card.

  • nvidia-driver-470 (recommended)
  • nvidia-driver-390
  • nvidia-driver-460
  • nvidia-driver-495
  • xserver-xorg-video-nouveau

If you read this article at a later time, you might have newer versions of Nvidia driver. To install the recommended driver, run the following command.

sudo ubuntu-drivers autoinstall

2 Ways to Install Nvidia Driver on Ubuntu 22.04 (GUI & Command Line) (8)

This will install some 32-bit packages as indicated by the i386 suffix. If you want to install a particular driver, run the following command.

sudo apt install nvidia-driver-version-number

For example:

sudo apt install nvidia-driver-495

After the driver is installed, we need to run the following command to reboot the computer, in order to enable nvidia-prime, which is technology to switch between Intel and Nvidia graphics cards.

sudo shutdown -r now

Now the proprietary Nvidia driver is being used.

sudo lshw -c display

2 Ways to Install Nvidia Driver on Ubuntu 22.04 (GUI & Command Line) (9)

You can check which card is being used now with the following command:

prime-select query

2 Ways to Install Nvidia Driver on Ubuntu 22.04 (GUI & Command Line) (10)

If you want to use Intel graphics card, run the following command:

sudo prime-select intel

To switch back to Nvidia card, run

sudo prime-select nvidia

Notice that you may need a reboot for the change to take effect.

Install the Latest Version Of Nvidia Drivers via PPA

Update: Canonical now includes the latest version of Nvidia drivers in Ubuntu LTS repository. The information in this section is for archive purpose only. You can ignore it.

Nvidia website maintains a page for its latest driver for Unix/Linux platforms. On this page, you can see the latest version of Nvidia drivers. At the time of this writing, the latest version is 430.40. Clicking the version number will take you to a page where you can see changelogs and whether your card is supported or not.

2 Ways to Install Nvidia Driver on Ubuntu 22.04 (GUI & Command Line) (11)

The driver included in the default Ubuntu repository can be outdated but more stable. If you would like to install the latest version, you can add a PPA maintained by Ubuntu Team.

sudo add-apt-repository ppa:graphics-drivers/ppa

Notice that you don’t need to manually run sudo apt update after adding PPA on Ubuntu 22.04/20.04. This operation becomes automatic on Ubuntu 22.04/20.04. Now you can run:

sudo ubuntu-drivers devices

The newest version becomes the recommended driver.

2 Ways to Install Nvidia Driver on Ubuntu 22.04 (GUI & Command Line) (12)

Now you can run the following command to install the newest version.

sudo ubuntu-drivers autoinstall

This PPA is still considered testing. Sometimes you might encounter dependency problems like below.

2 Ways to Install Nvidia Driver on Ubuntu 22.04 (GUI & Command Line) (13)

If you prefer stability over bleeding-edge, you can quit installing it. But if you are willing to take risks, you can upgrade the libraries by running the following command.

sudo apt upgrade

Then re-run the install command.

sudo ubuntu-drivers autoinstall

If there are still dependency problems, you can manually install them. For example, I saw the following error message.

The following packages have unmet dependencies: nvidia-driver-396 : Depends: xserver-xorg-video-nvidia-396 (= 396.24.02-0ubuntu0~gpu22.04/20.04.1) but it is not going to be installed Depends: libnvidia-cfg1-396 (= 396.24.02-0ubuntu0~gpu22.04/20.04.1) but it is not going to be installed

I ran this command to fix the issue.

sudo apt install libnvidia-cfg1-396 xserver-xorg-video-nvidia-396 nvidia-driver-396

Once the newest version is installed, reboot your computer.

sudo shutdown -r now

Help Files

You can find the help files by running the following command.

dpkg -L nvidia-driver-390

Replace 390 with your driver version number.

How to Automatically Update Nvidia Driver

It’s important to keep the Nvidia driver up to date. If you use an outdated driver or the open-source nouveau driver, then your desktop environment (like GNOME) might become sluggish and your CPU usage is very high. I once had the gnome-shell process consuming 30% of CPU.

To update Nvidia driver, simply run sudo ubuntu-drivers install command. You can automate it by creating a systemd service with the Nano command-line text editor.

sudo nano /etc/systemd/system/update-nvidia.service

Add the following lines in this file.

[Unit]Description= Update Nvidia DriverAfter=network-online.target[Service]Type=oneshotExecStart=/usr/bin/ubuntu-drivers install[Install]WantedBy=multi-user.target

2 Ways to Install Nvidia Driver on Ubuntu 22.04 (GUI & Command Line) (14)

In the Nano text editor, press Ctrl+O and Enter to save this file. Then press Ctrl+X to exit. Next, run the following command, so this systemd service will automatically start at boot time.

sudo systemctl enable update-nvidia.service

Can’t Change Screen Resolution?

If you find your screen resolution automatically changed to 1024 x 768, but you can’t set it to a higher resolution, that might be an indicator your Nvidia driver is outdated. You should install the latest version of Nvidia driver, then reboot your system. Also, be sure to update the Linux kernel to the latest available in the software repository.

How to Uninstall the Proprietary Nvidia Driver on Ubuntu 22.04/20.04

If for some reason you don’t want the proprietary driver anymore, you can remove it by running the following command.

sudo apt purge nvidia-*sudo apt autoremove

To remove Nvidia driver PPA, run:

sudo add-apt-repository --remove ppa:graphics-drivers/ppa

I hope this tutorial helped you install Nvidia driver on Ubuntu 22.04/20.04 desktop, either from GUI or from the command line. As always, if you found this post useful, then subscribe to our free newsletterto get more tips and tricks. Take care.

Rate this tutorial

[Total: 170 Average: 4.6]

2 Ways to Install Nvidia Driver on Ubuntu 22.04 (GUI & Command Line) (2024)

References

Top Articles
Latest Posts
Recommended Articles
Article information

Author: Nathanael Baumbach

Last Updated:

Views: 6070

Rating: 4.4 / 5 (75 voted)

Reviews: 90% of readers found this page helpful

Author information

Name: Nathanael Baumbach

Birthday: 1998-12-02

Address: Apt. 829 751 Glover View, West Orlando, IN 22436

Phone: +901025288581

Job: Internal IT Coordinator

Hobby: Gunsmithing, Motor sports, Flying, Skiing, Hooping, Lego building, Ice skating

Introduction: My name is Nathanael Baumbach, I am a fantastic, nice, victorious, brave, healthy, cute, glorious person who loves writing and wants to share my knowledge and understanding with you.