My laptop came with an integrated intel GPU and with a discrete Nvidia GPU.
After the installation of ubuntu 18.04, the Nvidia server settings app was already installed and I am able to view the driver version through that.
How do I do this for the Intel driver?
You can view all your video adapters with the
lspci
commandThe output will be something like this:
As you can see, I have an Intel GPU and an Nvidia GPU. The Intel GPU is using the i915 driver and the Nvidia is using nouveau. You can check this in the
Kernel driver in use:
section of the output.The standard Intel driver is a built-in part of 1) the kernel, 2) the Mesa 3D graphics library. Therefore it does not have its own versioning; as long as you have the latest kernel and Mesa, you have the latest Intel driver as well.
To see your active kernel version, use
uname -r
ordpkg -l | grep linux-image
.To see your active Mesa version, use
glxinfo -B
ordpkg -l | grep mesa
.Within Xorg, interfacing with the Intel driver might be handled by the
xserver-xorg-video-intel
module. Again, usedpkg -l
to check its version (and note that the package might not be present, in which case Xorg accesses the same Intel driver via the "modesetting" interface).