2

I would like to disable the Nvidia driver at boot time in Grub, on specific grub entries.

I noticed that adding module.blacklist=nvidia was the way to go. (source)

I rebooted my system, edited the GRUB command line with e, and at the end of the linux, I appended:

... module.blacklist=nvidia

However, the nvidia driver is still loaded:

$ lsmod | grep nvidia
nvidia_uvm           1007616  0
nvidia_drm             49152  10
nvidia_modeset       1183744  14 nvidia_drm
nvidia              19722240  616 nvidia_uvm,nvidia_modeset
drm_kms_helper        184320  2 nvidia_drm,i915
drm                   491520  14 drm_kms_helper,nvidia_drm,i915
i2c_nvidia_gpu         16384  0

➡️ Am I using the wrong syntax ?

➡️ Is there something I am missing during the boot ?

In the meantime, I'm switching the driver using the additional driver tool before I reboot:

additional_driver_picture

Running Ubuntu 20.04

Kevin Bowen
  • 20,055
  • 57
  • 82
  • 84
Wenzel
  • 121

1 Answers1

2

The correct syntax is

module_blacklist=nvidia .

Note the underscore instead of the dot.

guntbert
  • 13,475