Ubuntu – Nvidia drivers – Unable to check “Force full composition pipeline”

16.04gpu-driversnvidianvidia-prime

I read that in order to avoid screen tearing I should enable the option "Force full composition pipeline" on nvidia settings[¹]. However that option doesn't seem to be available in my system.

enter image description here

enter image description here

I thought nvidia-settings might have been held back but according to the blog post below, that option should be available in this version:

enter image description here

Am I missing something?

Thanks

[¹]https://www.gamingonlinux.com/articles/how-to-an-update-on-fixing-screen-tearing-on-linux-with-an-nvidia-gpu.8892

Best Answer

The solutions above do not work with Ubuntu 20.04 but the problem seems to persist. But the working solution is quite simple:

sudo nano /lib/modprobe.d/nvidia-kms.conf
sudo update-initramfs -u
reboot

The original content of nvidia-kms.conf is:

# This file was generated by nvidia-prime
# Set value to 1 to enable modesetting
options nvidia-drm modeset=0

As it says, modeset=0 has to be changed to modeset=1.

I wonder why this is not enabled from the beginning.

Related Question