文章目录
- 前言
- [一、lspci -nn 获取具体厂商及设备ID](#一、lspci -nn 获取具体厂商及设备ID)
- 二、使用步骤
- 三、使用3080Ti再查询一下
前言
新到的实验机器和加速卡,安装好之后发现lspci命令没有显示型号,这里记录下使用
Vendor ID和Device ID 通过网页查询获取加速卡具体型号的过程。
一、lspci -nn 获取具体厂商及设备ID
shell
root@4090:~# lspci -nn |grep NVIDIA
01:00.0 VGA compatible controller [0300]: NVIDIA Corporation Device [10de:2684] (rev a1)
Vendor ID是10de
Device ID是2684
二、使用步骤
在对应网页内查询
https://admin.pci-ids.ucw.cz/read/PC?restrict=
点击10de进入设备列表页面
找到了对应的设备,是RTX4090,和机箱内显卡标识契合。
三、使用3080Ti再查询一下
shell
root@node1:~# lspci -nn |grep NVIDIA
01:00.0 VGA compatible controller [0300]: NVIDIA Corporation GA102 [GeForce RTX 3080 Ti] [10de:2208] (rev a1)
没有问题