Hi I have a doubt this command shows me these drivers :
$ apt-cache search nvidia | grep -P '^nvidia-[0-9]+\s'
nvidia-331 - Transitional package for nvidia-331 <br/nvidia-346 -
Transitional package for nvidia-346<br/nvidia-352 - Transitional
package for nvidia-361<br/nvidia-361 - Transitional package for
nvidia-367<br/nvidia-367 - NVIDIA binary driver - version
367.57<br/nvidia-304 - NVIDIA legacy binary driver - version 304.134<br/nvidia-340 - NVIDIA binary driver - version 340.101<br/>
And but this command is showing me this result :
$ lspci | grep VGA
00:02.0 VGA compatible controller: Intel Corporation HD Graphics 5500
(rev 09)
making me confuse whether I have NVIDIA graphic card installed or not.
I don't really understand what all this means.
The output of :
$ lspci -k | grep -EA3 'VGA|3D|Display'
00:02.0 VGA compatible controller: Intel Corporation HD Graphics 5500 (rev 09)
Subsystem: Hewlett-Packard Company HD Graphics 5500
Kernel driver in use: i915
Kernel modules: i915
--
09:00.0 3D controller: NVIDIA Corporation GF117M [GeForce 610M/710M/810M/820M / GT 620M/625M/630M/720M] (rev a1)
Subsystem: Hewlett-Packard Company GeForce 820M
Kernel driver in use: nouveau
Kernel modules: nvidiafb, nouveau
but its not visible anywhere else. Have to install it?
lspci -k | grep -EA3 'VGA|3D|Display'
terminal command. That will answer your question. – Pilot6 Mar 20 '17 at 20:21apt-cache search nvidia
only shows packages available in the repositories, but tells you nothing about installed/not installed. To see if any nvidia related packages are installed, rundpkg -l | grep nvidia
. – mikewhatever Mar 20 '17 at 20:34is empty. I think the nvidia packages are not installed.Have to install them to use?
– user667688 Mar 21 '17 at 04:12