Command to show GPU model
+0
−0
Looking for a command to show the model(s) of the system's GPU(s). It doesn't matter if it shows other related info too, as long as the model doesn't get buried.
2 answers
+0
−0
With lshw
:
# lshw -C display
*-display
description: VGA compatible controller
product: Navi 32 [Radeon RX 7700 XT / 7800 XT]
vendor: Advanced Micro Devices, Inc. [AMD/ATI]
physical id: 0
bus info: pci@0000:0b:00.0
logical name: /dev/fb0
version: c8
width: 64 bits
clock: 33MHz
capabilities: pm pciexpress msi vga_controller bus_master cap_list rom fb
configuration: depth=32 driver=amdgpu latency=0 mode=2560x1440 resolution=2560,1440 visual=truecolor xres=2560 yres=1440
resources: iomemory:780-77f iomemory:7c0-7bf irq:82 memory:7800000000-7bffffffff memory:7c00000000-7c0fffffff ioport:e000(size=256) memory:fca00000-fcafffff memory:fcb00000-fcb1ffff
The -C
option selects the class of devices to show. In this case display
.
The model is displayed in the product
field in brackets (though not without ambiguity in this case).
0 comment threads
+1
−0
inxi -G
will show this.
$ inxi -G
Graphics:
Device-1: NVIDIA GP107 [GeForce GTX 1050 Ti] driver: nvidia v: 460.39
Display: x11 server: X.Org v: 1.20.10 driver: X: loaded: nvidia
resolution: 1920x1080~60Hz
OpenGL: renderer: GeForce GTX 1050 Ti/PCIe/SSE2 v: 4.6.0 NVIDIA 460.39
0 comment threads