如何在 Nouveau 和 INTEL 视频驱动程序之间切换?

如何在 Nouveau 和 INTEL 视频驱动程序之间切换?

在配备 NVIDIA Optimus 的笔记本电脑上,Nouveau 是默认安装的。当您尝试安装 NVIDIA 的闭源驱动程序时,可以通过 NVIDIA 的控制中心在 NVIDIA 和 INTEL 视频驱动程序之间切换。

但是如果我不想安装闭源驱动程序,我可以从 Nouveau 切换到 INTEL 驱动程序吗?怎样做?

答案1

是的,你可以。默认情况下,如果你使用 Nouveau 驱动程序,系统将使用 Intel 作为系统的主要 gfx。如果你想使用 Nvidia gfx,你需要DRI_PRIME=1在应用程序启动器或可执行文件前面添加,例如这个DRI_PRIME=1 yourApps。你可以尝试使用以下命令在终端中进行测试

DRI_PRIME=1 glxinfo | grep "OpenGL"

这将给你像这样的输出

OpenGL vendor string: nouveau
OpenGL renderer string: Gallium 0.4 on NV108
OpenGL core profile version string: 4.3 (Core Profile) Mesa 17.0.7
OpenGL core profile shading language version string: 4.30
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile
OpenGL core profile extensions:
OpenGL version string: 3.0 Mesa 17.0.7
OpenGL shading language version string: 1.30
OpenGL context flags: (none)
OpenGL extensions:
OpenGL ES profile version string: OpenGL ES 3.1 Mesa 17.0.7
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.10
OpenGL ES profile extensions:

这意味着你使用 Nouveau 驱动程序运行 glxinfo

相关内容