I have a system with Nvidia graphics card.
Doing the following
lspci | grep VGA
only shows my Nvidia card. How can I get it to detect the Intel one as well?
I have a system with Nvidia graphics card.
Doing the following
lspci | grep VGA
only shows my Nvidia card. How can I get it to detect the Intel one as well?
Open a terminal and execute :
lspci -k | grep -EA2 'VGA|3D'
The output shows something like this :
00:02.0 VGA compatible controller: Intel Corporation 4th Gen Core Processor Integrated Graphics Controller (rev 06)
Subsystem: CLEVO/KAPOK Computer Device 3501
Kernel driver in use: i915
01:00.0 3D controller: NVIDIA Corporation GM107M [GeForce GTX 860M] (rev a2)
Subsystem: CLEVO/KAPOK Computer Device 3501
Kernel driver in use: nvidia
lspci -k | grep -EA2 'VGA|3D'
terminal command. – Pilot6 Dec 25 '15 at 11:04