From the CUDA documents, I need to check whether my computer is capable by using the command:
lspci | grep -i nvidia
but for my Thinkpad, this returns nothing. The document further says
If you do not see any settings, update the PCI hardware database that Linux maintains by entering update-pciids (generally found in /sbin) at the command line and rerun the previous lspci command.
I just don't understand what this means, who can tell me what to do next?
Ps, this is my computer:
OS: Ubuntu 18.04 LTS x86_64
Host: 4291RF4 ThinkPad X220
Kernel: 4.15.0-24-generic
Uptime: 2 hours, 18 mins
Packages: 3252
Shell: bash 4.4.19
Resolution: 1366x768
DE: Xfce
WM: Xfwm4
WM Theme: Greybird
Theme: Greybird [GTK2], Radiance [G
Icons: Elementary-xfce-darker [GTK2
Terminal: terminator
CPU: Intel i3-2310M (4) @ 2.100GHz
GPU: Intel Sandybridge Mobile
Memory: 2265MiB / 7859MiB
lspci
doesn't "show nothing". You can runlspci
and see what PCI devices are installed. Thegrep -i nvidia
filtersnvidia
output. In your case you don't have any Nvidia device. – Pilot6 Jul 09 '18 at 13:27