How to Disable Nouveau Nvidia driver on Ubuntu 18.04
During NVIDIA drivers installation you may have an error:
“ERROR: The Nouveau kernel driver is currently in use by your system. This driver is incompatible with the NVIDIA driver, and must be disabled before proceeding. Please consult the NVIDIA driver README and your Linux distribution’s documentation for details on how to correctly disable the Nouveau kernel driver.”
So, before proceeding installation NVIDIA drivers on Ubuntu 18.04 you must disable Nouveau kernel driver. To disable the default Nouveau Nvidia driver.
Create a file: blacklist-nouveau.conf
# nano /etc/modprobe.d/blacklist-nouveau.conf
and fill the following contents:
blacklist nouveau options nouveau modeset=0
Regenerate the kernel initramfs:
# update-initramfs -u
And reboot your system:
# reboot
Now you can continue install the NVIDIA drivers on Ubuntu
If you like what you are reading, please:
How to Disable Nouveau Nvidia driver on Ubuntu 18.04
- Create a file: blacklist-nouveau.conf
nano /etc/modprobe.d/blacklist-nouveau.conf
- Fill with following contents:
blacklist nouveau
options nouveau modeset=0 - Regenerate the kernel initramfs
update-initramfs -u
- Reboot your system
reboot
2 Comments