在 Debian Stretch 上暂时禁用 nvidia 驱动程序

在 Debian Stretch 上暂时禁用 nvidia 驱动程序

在 Debian Stretch 中暂时禁用 nVidia 驱动程序的正确步骤是什么(不删除任何 nVidia 软件包)。我想测试 Nouveau 驱动程序,并快速切换到 nVidia 驱动程序。

(我可能可以在 IRC 上回答这个问题,但我更愿意在这里问,以防其他人也对这个问题感兴趣)

答案1

打开你的/etc/modprobe.d/blacklist.conf

添加 nvidia 驱动程序

评论nouveau司机然后更新initramfs

 update-initramfs -u

答案2

与 GAD3R 的答案相比,在 Debian 10 Buster 上我必须执行额外的步骤:

  1. 将新模块列入黑名单:添加
    blacklist nvidia
    blacklist nvidia_drm
    blacklist nvidia_modeset

到里面的某个文件/etc/modprobe.d/

  1. 更新 ramdisk:# update-initramfs -u

  2. 禁用 nvidia-persistenced 服务:# systemctl disable nvidia-persistenced.service

(它似乎不管我的系统上的黑名单如何都加载驱动程序。)

相关内容