PCI总线设备lspci |grep VGA标志解释

结果

root@dev:~# lspci -nn | grep VGA
00:02.0 VGA compatible controller [0300]: Intel Corporation Device [8086:7d67] (rev 06)
02:00.0 VGA compatible controller [0300]: NVIDIA Corporation Device [10de:2c05] (rev a1)
80:14.5 Non-VGA unclassified device [0000]: Intel Corporation Device [8086:7f2f] (rev 10)
84:00.0 VGA compatible controller [0300]: NVIDIA Corporation Device [10de:2c05] (rev a1)

解读

00:02.0  Intel iGPU (核显)
02:00.0  NVIDIA GPU (10de:2c05)
84:00.0  NVIDIA GPU (10de:2c05)

说明:

  • 主板自带核显8086:7d67 → Intel 显卡(应该是 Xe / UHD,随 CPU 自带)。
  • 两块独显10de:2c05 → 这是 NVIDIA Blackwell 架构的新显卡设备 ID,正是 RTX 5070 Ti 系列。你这里有两张(可能是双显卡配置,或者 SR-IOV / GPU 直通虚拟出来的)。
  • 还有一个 Intel unclassified device → 这是 Intel CXL / DSA 之类 I/O 相关设备,可以忽略。