建议在 Linux 上使用命令 找到 GPU lspci | grep VGA
。它在 Ubuntu 上运行良好,但是当我尝试在 CentOS 上使用它时,它说找不到 lspci 命令。如何在 CentOS 上检查 GPU 卡。请注意,我不是机器的管理员,我只从命令行远程使用它。我打算将 GPU 用作那台机器上的 GPGPU,但首先我需要检查它是否有一个。
问问题
44926 次
5 回答
22
这假设您已安装专有驱动程序,但发出以下命令...
nvidia-smi
输出应与此类似:
Mon Dec 23 10:50:28 2013
+------------------------------------------------------+
| NVIDIA-SMI 331.20 Driver Version: 331.20 |
|-------------------------------+----------------------+----------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
|===============================+======================+======================|
| 0 GeForce GTX 660 Off | 0000:01:00.0 N/A | N/A |
| 10% 38C N/A N/A / N/A | 97MiB / 2047MiB | N/A Default |
+-------------------------------+----------------------+----------------------+
+-----------------------------------------------------------------------------+
| Compute processes: GPU Memory |
| GPU PID Process name Usage |
|=============================================================================|
| 0 Not Supported |
+-----------------------------------------------------------------------------+
于 2013-12-23T15:54:26.000 回答
19
您是否尝试过启动/sbin/lspci
或/usr/sbin/lspci
?
于 2012-04-25T07:15:48.050 回答
8
尝试lshw
或lspci
。如果您还没有安装它们,则必须安装它们。
安装 lshw
sudo yum install lshw //CentOS
sudo apt-get install lshw // Ubuntu
然后运行这个
sudo lshw -C display
输出看起来像这样
*-display
description: VGA compatible controller
product: GP102 [GeForce GTX 1080 Ti]
vendor: NVIDIA Corporation
physical id: 0
bus info: pci@0000:0b:00.0
version: a1
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress vga_controller bus_master cap_list rom
configuration: driver=nvidia latency=0
resources: irq:95 memory:fb000000-fbffffff memory:e0000000-efffffff memory:de000000-dfffffff ioport:5000(size=128) memory:faf00000-faf7ffff
同样,您可以尝试lspci
lspci | grep VGA
输出看起来像这样
0b:00.0 VGA compatible controller: NVIDIA Corporation GP102 [GeForce GTX 1080 Ti] (rev a1)
于 2018-06-04T15:04:42.277 回答
2
lspci 应该在包 pciutils 中。
您可以使用 dmidecode 执行此操作,但作为您不是管理员,您可能无法执行此操作,也无法安装 pciutils 软件包。
如果这个系统上有一个 Xorg,那么它应该很容易:
grep Graphics /var/log/Xorg.0.log
于 2012-04-25T06:39:34.557 回答
1
好吧,如果您使用 CUDA,它具有枚举系统上支持 CUDA 的设备的功能。为什么不使用它?
于 2012-04-25T07:05:50.083 回答