
## 方式 1

```bash
spci -nn | grep -i nvidia | grep controller
4e:00.0 VGA compatible controller [0300]: NVIDIA Corporation Device [10de:2684] (rev a1)
```

获取的 ID 是 `10de:2684`，然后去 <https://admin.pci-ids.ucw.cz/read/PC/10de/2684> 查询，结果是 `AD102 [GeForce RTX 4090]`

## 方式 2

```bash
sudo update-pciids
```

然后使用 `lspci -nn` 查询，结果是 `AD102 [GeForce RTX 4090]`

