如何找到已安装的英特尔显卡驱动程序版本?

如何找到已安装的英特尔显卡驱动程序版本?

我的笔记本电脑配备了集成的英特尔 GPU 和独立的 Nvidia GPU。

安装 ubuntu 18.04 后,Nvidia 服务器设置应用程序已经安装,我可以通过该应用程序查看驱动程序版本。

我该如何对英特尔驱动程序执行此操作?

答案1

lspci您可以使用以下命令查看所有视频适配器

lspci -k | grep -EA3 'VGA|3D|Display'
  |    | |   |    |        \- Only VGA is not good enough,
  |    | |   |    |           because Nvidia mobile adapters
  |    | |   |    |           are shown as 3D and some AMD
  |    | |   |    |           adapters are shown as Display.
  |    | |   |    \---------  Print 3 lines after the regexp match.
  |    | |   \--------------  program for searching patterns in files
  |    | |                    (regular expressions)
  |    | \------------------  pipe used for passing the results of the
  |    |                      first command (lspci -k) to the next (grep)
  |    \--------------------  Show kernel drivers handling each device.
  \-------------------------  utility for displaying information
                              about PCI buses in the system and 
                              devices connected to them

输出将会像这样:

00:02.0 VGA compatible controller: Intel Corporation HD Graphics 620 (rev 02)
    DeviceName:  Onboard IGD
    Subsystem: Dell HD Graphics 620
    Kernel driver in use: i915

01:00.0 3D controller: NVIDIA Corporation GM108M [GeForce 940MX] (rev a2)
    Subsystem: Dell GM108M [GeForce 940MX]
    Kernel driver in use: nouveau
    Kernel modules: nouveau, nvidia_drm, nvidia

如您所见,我有一个 Intel GPU 和一个 Nvidia GPU。Intel GPU 使用 i915 驱动程序,而 Nvidia 使用 nouveau。您可以在Kernel driver in use:输出部分中检查这一点。

答案2

标准英特尔驱动程序是 1) 内核、2) Mesa 3D 图形库的内置部分。因此它没有自己的版本;只要您拥有最新的内核和 Mesa,您就拥有最新的英特尔驱动程序。

要查看当前内核版本,请使用uname -rdpkg -l | grep linux-image

要查看您的活动 Mesa 版本,请使用glxinfo -Bdpkg -l | grep mesa

在 Xorg 中,与英特尔驱动程序的接口可能由模块处理xserver-xorg-video-intel。再次使用dpkg -l检查其版本(并注意软件包可能不存在,在这种情况下 Xorg 通过“模式设置”接口访问相同的英特尔驱动程序)。

相关内容