Linux Tips

To detect graphics hardware in your system, use following commend

> lspci -k | grep -EA3 ‘VGA|3D|Display’

Expect output as follows:

lspci -k | grep -EA3 ‘VGA|3D|Display’
00:02.0 VGA compatible controller: Intel Corporation Comet Lake UHD Graphics (rev 04)
DeviceName: GPU
Subsystem: Intel Corporation Comet Lake UHD Graphics
Kernel driver in use: i915

--

--