I am running Ubuntu Unity 22.10 in an iMac (Late 2011 model), with an AMD Radeon HD 6750M graphics processor. Is there any way to check whether Ubuntu detects and utilizes the graphics card?
I searched for "Additional Drivers", but there are not any (I also know that the kernel supports many cards out of the box, so it may just be that Ubuntu is utilizing the card).
archisman@iMac:~$ glxinfo | grep OpenGL
OpenGL vendor string: X.Org
OpenGL renderer string: AMD TURKS (DRM 2.50.0 / 5.19.0-21-generic, LLVM 15.0.2)
OpenGL core profile version string: 3.3 (Core Profile) Mesa 22.2.1
OpenGL core profile shading language version string: 3.30
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile
OpenGL core profile extensions:
OpenGL version string: 3.1 Mesa 22.2.1
OpenGL shading language version string: 1.40
OpenGL context flags: (none)
OpenGL extensions:
OpenGL ES profile version string: OpenGL ES 3.1 Mesa 22.2.1
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.10
OpenGL ES profile extensions:
archisman@iMac:~$ DRI_PRIME=1 glxinfo | grep OpenGL
OpenGL vendor string: Intel
OpenGL renderer string: Mesa Intel(R) HD Graphics 2000 (SNB GT1)
OpenGL core profile version string: 3.3 (Core Profile) Mesa 22.2.1
OpenGL core profile shading language version string: 3.30
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile
OpenGL core profile extensions:
OpenGL version string: 3.3 (Compatibility Profile) Mesa 22.2.1
OpenGL shading language version string: 3.30
OpenGL context flags: (none)
OpenGL profile mask: compatibility profile
OpenGL extensions:
OpenGL ES profile version string: OpenGL ES 3.0 Mesa 22.2.1
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.00
OpenGL ES profile extensions:
sudo lshw -C display
, ie. list-hardware of class display; it'll show you what the kernel detected, and thedriver=
bit tells you the kernel module in use for that hardware. – guiverc Oct 14 '22 at 04:17driver=
, but it seems that the card is being detected. You can turn your comment into an answer. – Archisman Panigrahi Oct 17 '22 at 21:52