How to Install NVIDIA Drivers on Ubuntu 24.04: Step-by-Step Guide

Installing drivers is important to get the best performance from your NVIDIA graphics card. These drivers boost graphics quality and overall speed. They also enable key features, such as GPU acceleration, which is crucial for gaming, 3D modeling, and high-performance computing. These drivers are necessary for CUDA development in machine learning and scientific simulations.
This tutorial details how to install NVIDIA drivers on Ubuntu 24.04. We look at both graphical and command-line methods. You will also find troubleshooting tips for common installation problems.
#Prerequisites
Before installing NVIDIA drivers, make sure you have:
-
An Ubuntu 24.04 server instance. Ensure your instance has an NVIDIA GPU (e.g., GeForce, Quadro).
-
SSH access to the server instance. You also need a non-root user with sudo privileges to run administrative commands.
Deploy and scale your projects with Cherry Servers' cost-effective dedicated or virtual servers. Enjoy seamless scaling, pay-as-you-go pricing, and 24/7 expert support—all within a hassle-free cloud environment.
#Installing NVIDIA drivers on Ubuntu 24.04
Before installing the drivers, check that your system meets the prerequisites. Follow these steps to avoid conflicts. First, verify your GPU model. Next, prepare your environment. Finally, choose an installation method that fits your workflow. Options include graphical tools, manual builds, or CUDA-focused setups.
#Checking current driver status
Before installing new NVIDIA drivers, you must check your system's current state. This helps identify your graphics card and any existing drivers to prevent conflicts.
#Verifying GPU model
To identify your NVIDIA GPU, run this command in your terminal:
lspci | grep -i nvidia
This command searches for hardware entries named "NVIDIA." The lspci
manual explains how it displays PCI device information.
#Looking for existing drivers
To check for existing drivers, run:
lsmod | grep nvidia
This command shows if any nvidia
drivers are loaded in the kernel.
#Removing conflicting drivers
If you find the open-source nouveau
driver, disable or remove it to prevent conflicts with the proprietary NVIDIA drivers. You can check for "nouveau" in /etc/modprobe.d
or /lib/modprobe.d
. If you suspect leftover drivers from older proprietary packages, uninstall them before installing new ones:
sudo apt remove --purge nvidia-*
Removing potential conflicts helps avoid system errors or black screens when you activate the new driver.
#Preparing your Ubuntu 24.04 environment
A well-prepared Ubuntu system helps avoid driver installation errors. Updating your packages, enabling the correct repositories, and verifying kernel compatibility ensure a smooth process.
#System update
Before installing new software, it is crucial to update your system. Run the following command:
sudo apt update && sudo apt upgrade -y
This command fetches the latest package lists and applies any available upgrades. The Ubuntu team encourages regular updates to patch security issues and align your kernel with the newest modules.
#Adding required repositories
You need the restricted
and multiverse
repositories to access proprietary driver packages, including NVIDIA drivers. Enable them with these commands:
sudo add-apt-repository restricted
sudo add-apt-repository multiverse
sudo apt update
The Ubuntu documentation on repositories explains how restricted software resides in these channels. Once added, your system can access the proprietary GPU drivers.
#Kernel Compatibility
Check your kernel version:
uname -r
If you see an older or custom kernel, ensure it can handle the modules. Then, install build-essential
:
sudo apt install build-essential linux-headers-$(uname -r)
build-essential
compiles external modules, and linux-headers-$(uname -r)
aligns with your kernel version. The Linux kernel building guide highlights how matching headers are crucial for creating stable third-party drivers.
#Installing NVIDIA drivers
Now that your system is ready, let’s explore the best methods to install NVIDIA drivers on Ubuntu 24.04. Each approach caters to different needs, whether you prioritize simplicity, customization, or compatibility with tools like CUDA.
Follow the steps carefully to ensure a smooth installation process.
#Method 1: Using the Ubuntu drivers tool (recommended)
Ubuntu’s built-in Software & Updates tool simplifies driver installation by automatically detecting your GPU and recommending the best drivers. This method ensures compatibility with your system’s kernel and repositories, reducing the risk of conflicts.
#1. Open software & updates
Launch the tool via the Ubuntu application menu or run:
software-properties-gtk
Navigate to the Additional Drivers tab.
#2. Select a driver
The tool lists available NVIDIA drivers. Pick the driver you want (e.g., nvidia-driver-560
):
If no drivers appear, confirm the restricted and multiverse repositories are enabled.
#3. Apply changes
Click Apply Changes to start the installation. The tool handles dependencies and configuration automatically.
#4. Reboot your system
Restart your system to activate the driver:
sudo reboot
#5. Verify installation
After rebooting, confirm the driver works by running:
nvidia-smi
This command displays GPU details like driver version, memory usage, temperature, and more. For example:
#Method 2: Installing from the official NVIDIA website
Use this method if you need a specific driver version (e.g., for beta features) or have legacy hardware unsupported by Ubuntu’s repositories. The manual installation offers flexibility but requires careful preparation.
#1. Download the driver
Visit the NVIDIA Driver Downloads page. Select your GPU model and operating system. For example, a GeForce GT 1030 user would choose GeForce > GeForce 10 Series > Geforce GT 1030:
Click “View” as shown below:
Then click “Download”:
This will download an installer file. Similar to this: NVIDIA-Linux-x86_64-550.144.03.run
.
#2. Prepare your system
Disable Ubuntu’s default open-source nouveau
driver to prevent conflicts:
echo "blacklist nouveau" | sudo tee /etc/modprobe.d/blacklist-nouveau.conf
echo "options nouveau modeset=0" | sudo tee -a /etc/modprobe.d/blacklist-nouveau.conf
sudo update-initramfs -u
Then reboot the system.
#3. Run the installer
Navigate to the directory containing the .run
file. Look for a driver named NVIDIA-Linux-x86_64-550.144.03.run
, run:
chmod +x NVIDIA-Linux-x86_64-550.144.03.run
sudo ./NVIDIA-Linux-x86_64-550.144.03.run
Follow the prompts to complete the installation. If asked, do not let the installer configure Xorg—Ubuntu handles this automatically.
#4. Reboot and verify
Restart your system and verify with the following:
nvidia-smi
#Method 3: Using the graphics drivers Personal Package Archive (PPA)
A Personal Package Archive (PPA) is a third-party repository hosted on Launchpad. The Ubuntu Community PPAs guide explains how they work.
The Graphics Drivers PPA provides newer NVIDIA drivers before they reach Ubuntu’s official repositories. Use this for early access to performance optimizations or bug fixes.
#1. Add the PPA
Add the repository and update your package list:
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt update
#2. Install the driver
For manual selection, list available versions first:
ubuntu-drivers devices
Then, install the specific version you want. However, we advise using the driver tagged recommended
:
sudo apt install nvidia-driver-570
Additionally, you can use ubuntu-drivers
to auto-install the recommended driver:
sudo ubuntu-drivers autoinstall
#3. Reboot and verify
Restart your system and confirm with nvidia-smi
:
Also read: How to check your Ubuntu version
#Method 4: Installing via CUDA PPA (for CUDA development)
CUDA (Compute Unified Device Architecture) accelerates AI and scientific computing workloads. You need to install the CUDA Toolkit and compatible drivers to use NVIDIA GPUs for machine learning or other heavy tasks. This method installs the toolkit from NVIDIA’s official repository. This way, you get a supported and up-to-date driver package.
Begin by downloading a pin file that helps prioritize the CUDA repository. Run the following command to fetch it:
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2404/x86_64/cuda-ubuntu2404.pin
Then, move the pin file to the correct directory so that it sets the proper priority:
sudo mv cuda-ubuntu2404.pin /etc/apt/preferences.d/cuda-repository-pin-600
Next, download the CUDA repository package from NVIDIA. For CUDA Toolkit 12.8, run:
wget https://developer.download.nvidia.com/compute/cuda/12.8.0/local_installers/cuda-repo-ubuntu2404-12-8-local_12.8.0-570.86.10-1_amd64.deb
Install this package with the following:
sudo dpkg -i cuda-repo-ubuntu2404-12-8-local_12.8.0-570.86.10-1_amd64.deb
Now, copy the keyring file so your system can verify the repository:
sudo cp /var/cuda-repo-ubuntu2404-12-8-local/cuda-*-keyring.gpg /usr/share/keyrings/
Update your package list to include the new repository:
sudo apt-get update
Install the CUDA Toolkit version 12.8
by running:
sudo apt-get -y install cuda-toolkit-12-8
For the driver installation, choose the version that suits your needs.
To install the open kernel module flavor, run the following:
sudo apt-get install -y nvidia-open
Or, if you need the legacy kernel module flavor, run:
sudo apt-get install -y cuda-drivers
Next, verify the installation:
nvidia-smi
You can also verify CUDA with:
nvcc --version
Also read: AMD vs NVIDIA: Which is the Best GPU for a Server?
#Common installation issues and troubleshooting
Even with careful preparation, you might encounter issues during or after installing NVIDIA drivers. Below, we address frequent problems and provide actionable solutions to stabilize your system.
#Conflict with the Nouveau driver
Ubuntu’s default open-source Nouveau driver can conflict with NVIDIA’s proprietary driver, causing errors or startup failures. To resolve this, blacklist the Nouveau driver. Open a terminal and run:
sudo sh -c "echo 'blacklist nouveau\\noptions nouveau modeset=0' > /etc/modprobe.d/blacklist-nouveau.conf"
sudo update-initramfs -u
Then, reboot your system.
This prevents Nouveau from loading, allowing the NVIDIA driver to take control of the GPU. For details, review the Linux kernel documentation on module management.
#DKMS build errors
DKMS (Dynamic Kernel Module Support) errors often occur if kernel headers or build tools are missing. Reinstall these components to fix compilation issues:
sudo apt install build-essential linux-headers-$(uname -r)
sudo apt reinstall nvidia-driver-560
Replace 560
with your driver version. Confirm success by running dkms status
, which should list the NVIDIA module as installed:
#Black screen or low resolution after reboot
A black screen or low-resolution display typically indicates that Xorg failed to load the NVIDIA driver. To resolve this, switch to a terminal then regenerate Xorg’s configuration:
sudo nvidia-xconfig
sudo systemctl restart gdm
Replace gdm
with your display manager (e.g., lightdm
). Check logs for errors using journalctl -b | grep -i nvidia
. For advanced troubleshooting, consult Ubuntu’s Xorg documentation.
#Recovering from partial installs
Interrupted installations can leave your system unbootable. Boot with the nomodeset
parameter to bypass GPU issues:
- At the GRUB menu, press
e
to edit boot options. - Add
nomodeset
to the end of thelinux
line. - Press
Ctrl+X
to boot.
Once logged in, purge NVIDIA packages and reinstall:
sudo apt purge nvidia-*
sudo apt install nvidia-driver-560
#Conclusion
Installing NVIDIA drivers on Ubuntu 24.04 lets you unlock your GPU’s full power for gaming, AI, or graphics tasks. Whether you are using Ubuntu’s ubuntu-drivers
tool, manual installation, or CUDA-focused setups, this guide ensures compatibility and security.
Regularly update drivers for performance gains and security patches, avoid mixing installation methods, and back up configs.
Cloud VPS Hosting
Starting at just $3.24 / month, get virtual servers with top-tier performance.