NVIDIA is a manufacture of graphics processing units (GPU), also known as graphics cards.
NVIDIA devices on Linux have two popular device driver options: the opensource drivers from the nouveau project or the proprietary drivers published by NVIDIA. The nouveau drivers are built into the Clear Linux* OS kernel and are loaded automatically at system boot if a compatible card is detected.
These instructions show how to use the proprietary NVIDIA drivers which require a manual installation.
Note
Software installed outside of swupd is not updated with Clear Linux OS updates and must be updated and maintained manually.
Prerequisites
- A Clear Linux OS system with a desktop installed
- A NVIDIA device installed
Install DKMS
The Dynamic Kernel Module System (DKMS) allows the NVIDIA kernel modules to be automatically integrated when kernel updates occur in Clear Linux OS.
Install the appropriate DKMS bundle using the instructions below:
Note
The Long Term Support (LTS) kernel variant is more likely to remain compatible between updates with NVIDIA drivers.
The kernel-native-dkms bundle provides the dkms program and Linux kernel headers, which are required for compiling kernel modules.
The kernel-native-dkms bundle also:
- Adds a systemd update trigger (/usr/lib/systemd/system/dkms-new-kernel.service) to automatically run DKMS to rebuild modules after a kernel upgrade occurs with swupd update .
- Disables kernel module signature verification by appending a kernel command-line parameter ( module.sig_unenforce ) from the /usr/share/kernel/cmdline.d/clr-ignore-mod-sig.conf file.
- Adds a notification to the Message of the Day (MOTD) indicating kernel module signature verification is disabled.
Warning
We recommend that you always review the swupd update output to make sure kernel modules were successfully rebuilt against the new kernel. This is especially important for systems where a successful boot relies on a kernel module.
Install the kernel-native-dkms or kernel-lts-dkms bundle:
- Determine which kernel variant is running on Clear Linux OS. Only the native and lts kernels are enabled to build and load out-of-tree kernel modules with DKMS.
$ uname -r 5.XX.YY-ZZZZ.native
Ensure .native or .lts is in the kernel name.
2. Install the DKMS bundle corresponding to the installed kernel. Use kernel-native-dkms for the native kernel or kernel-lts-dkms for the lts kernel.
sudo swupd bundle-add kernel-native-dkms
or
sudo swupd bundle-add kernel-lts-dkms
- Update the Clear Linux OS bootloader and reboot.
sudo clr-boot-manager update reboot
Download and install the NVIDIA Drivers
Download the NVIDIA Drivers for Linux
- Identify the model of NVIDIA GPU that is installed.
sudo lshw -C display
- Go to the NVIDIA Driver Downloads website . Search for and download the appropriate driver based on the model of NVIDIA GPU you have with Linux 64-bit selected as the Operating System .
- Open a terminal and navigate to where the NVIDIA-Linux-x86_64-.run file was saved. In this example, it was saved in the Downloads folder.
cd ~/Downloads/
- Make the NVIDIA-Linux-x86_64-.run file executable.
hmod +x :file:`NVIDIA-Linux-x86_64-.run
Disable the nouveau Driver
The proprietary NVIDIA driver is incompatible with the nouveau driver and needs to be disabled before installation can continue.
- Disable the nouveau driver by creating a blacklist file under /etc/modprobe.d and reboot.
sudo mkdir /etc/modprobe.d printf "blacklist nouveau \noptions nouveau modeset=0 \n" | sudo tee --append /etc/modprobe.d/disable-nouveau.conf
- Reboot the system and log back in. It is normal for the graphical environment to not start with no NVIDIA driver loaded.
Configure the Dynamic Linker
The NVIDIA installer will be directed to install files under /opt/nvidia as much as possible to keep its contents isolated from the rest of the Clear Linux OS system files under /usr. The dynamic linker will need to be configured to use the NVIDIA-provided libraries.
- Configure the dynamic linker to look for and cache shared libraries under /opt/nvidia/lib and /opt/nvidia/lib32.
echo "include /etc/ld.so.conf.d/*.conf" | sudo tee --append /etc/ld.so.conf sudo mkdir /etc/ld.so.conf.d printf "/opt/nvidia/lib \n/opt/nvidia/lib32 \n" | sudo tee --append /etc/ld.so.conf.d/nvidia.conf
Install the NVIDIA Drivers
- A terminal not running on /dev/tty1 is useful to view uninterrupted installation progress. Switch to a secondary virtual terminal by pushing CTRL + ALT + F2 or remotely login over SSH.
- Navigate into the directory where the NVIDIA installer was downloaded.
cd ~/Downloads/
- Run the installer with the advanced options below.
sudo ./NVIDIA-Linux-x86_64-<VERSION>.run \ --utility-prefix=/opt/nvidia \ --opengl-prefix=/opt/nvidia \ --compat32-prefix=/opt/nvidia \ --compat32-libdir=lib32 \ --x-prefix=/opt/nvidia \ --documentation-prefix=/opt/nvidia \ --no-precompiled-interface \ --no-nvidia-modprobe \ --no-distro-scripts \ --force-libglx-indirect \ --dkms \ --silent
- The graphical interface may automatically start after the NVIDIA driver is loaded. Return to the working terminal and log back in if necessary.
- Validate the nvidia kernel modules are loaded.
lsmod | grep ^nvidia
- Run a Clear Linux OS system verification to restore files that the NVIDIA installer likely deleted.
sudo swupd verify --quick --fix --bundles=lib-opengl
Note
The NVIDIA software places some files under the /usr subdirectory which are not managed by Clear Linux OS and conflict with the Clear Linux OS stateless design. Although a limited version of swupd verify āfix is ran above, other uses of the swupd verify āfix command should be avoided with the proprietary NVIDIA drivers installed.
Updating the NVIDIA Drivers
The proprietary NVIDIA drivers are installed manually outside of swupd and must be updated manually when needed.
Updating the NVIDIA drivers follows the same steps as initial installation, however the desktop environment must first be stopped so that the drivers are not in use.
- Follow the steps in Download the NVIDIA Drivers for Linux section to get the latest NVIDIA drivers.
- Temporarily set the default boot target to the multi-user which is a non-graphical runtime.
sudo systemctl set-default multi-user.target
- Reboot the system and log back in. It is normal for the graphical environment to not start.
- Follow the steps in Install the NVIDIA Drivers section to update the NVIDIA drivers. This installation will overwrite the previous NVIDIA drivers and files.
- Set the default boot target back to the graphical target.
sudo systemctl set-default graphical.target
- Reboot the system and log back in.
- Trigger a flatpak update which will download the runtime corresponding with the new NVIDIA drivers for flatpak apps requiring it.
flatpak update
Uninstalling the NVIDIA Drivers
The NVIDIA drivers and associated software can be uninstalled and nouveau driver restored by:
- Remove the previously created file /etc/modprobe.d that prevents nouveau from loading.
sudo rm /etc/modprobe.d/disable-nouveau.conf
- Run the sudo /opt/nvidia/bin/nvidia-uninstall
- Follow the prompts on the screen and reboot the system.
Debugging Installation of NVIDIA Drivers
- The NVIDIA driver places installer and uninstaller logs under /var/log/nvidia-install and /var/log/nvidia-uninstall.
- NVIDIA-Linux-x86_64-.run --advanced-options shows many parameters to control installation behavior.
- NVIDIA-Linux-x86_64-.run --extract-only extracts installation files into a directory namedNVIDIA-Linux-x86_64-.