我有正确的图形驱动程序吗?

我有正确的图形驱动程序吗?

我刚刚全新安装了 Kubuntu 11.10。

如何知道是否安装了最佳的图形驱动程序,以及如何安装所需的驱动程序?

这个问题相当具体,但是否有一个通用的命令说:“是的,你有正确的驱动程序?

$ lspci
...
00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (primary) (rev 0c)
00:02.1 Display controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (secondary) (rev 0c)
...

答案1

有些显卡有开源驱动程序和专有驱动程序(更准确地说是 ATI 和 nVidia)。“正确的驱动程序”可能取决于您的型号以及您要运行的内容,因为它们可能提供不同的性能。

正如你Ubuntu,我正在发布glxinfo测试 Unity 3D 支持的命令(相当于/usr/lib/nux/unity_support_test -p):

glxinfo | grep -i rendering
glxinfo | grep -i fbconfig
glxinfo | grep -i texture_from_pixmap
glxinfo | grep -i vertex_program
glxinfo | grep -i fragment_program
glxinfo | grep -i vertex_buffer
glxinfo | grep -i framebuffer_object
glxinfo | grep -i "glx version"

如果您有所有这些的输出,那么您应该能够运行 Unity 3D。它不像运行特定应用程序的压力测试,而是让您了解基本的 3D 支持。

相关内容