我想知道我的显卡型号。我认为这可能是ATI,但我想确定!
我有Ubuntu 11.10(32位)和Asus A6 VA笔记本电脑。
我想知道我的显卡型号。我认为这可能是ATI,但我想确定!
我有Ubuntu 11.10(32位)和Asus A6 VA笔记本电脑。
Answers:
打开“终端”,然后键入: lspci | grep VGA
在这里,您将找到GPU卡的型号。
for s in $(lspci | grep VGA | awk '{print $1}'); do lspci -v -s $s; done
DeviceName
这就是您想要的,很可能是您紧随其后的那一行。用于lspci -v | grep VGA -A 1
在之后加上一行。
sudo update-pciids
下载PCI ID列表的新版本。然后做lspci
。更新PCI ID可以改善作为lspci
输出可用的信息。例如,在更新pci id 01:00.0 3D控制器之前:NVIDIA Corporation GM107GLM(rev a2) 与在进行更新pciids 01:00.0 3D控制器之前:NVIDIA Corporation GM107GLM [Quadro M1200 Mobile](rev a2)
01:00.0 VGA compatible controller: NVIDIA Corporation GV102 (rev a1)
有关图形卡的详细信息(通常包括其品牌和型号),请运行:
sudo lshw -C video
与相比,这可能会更频繁地提供品牌和型号名称lspci
,但不能保证提供名称(也不是lspci
)。
sudo lshw -C display
是等效的。
您可以不带运行此(一个)sudo
,但获取信息的可能性要小一些。lshw -C video
如果您没有管理权,仍然是一个合理的选择。
如果愿意,您可以解析输出以仅获得带有模型名称的行:
sudo lshw -C video | grep product:
或者,如果您只需要提取名称(例如,出于脚本目的,但是请记住,提取的内容并不总是如此):
sudo lshw -C video | awk -F'product: ' '/product/{print $2}'
(不要忘了-Fproduct:
在关闭之前,之后的空间'
。)
例如:在我的系统上,这给出了:
M52 [Mobility Radeon X1300]
有时lspci是不够的:
$ lspci -nn |egrep "VGA|Display"
例如:您最终可能会遇到以下情况:
00:02.0 VGA compatible controller [0300]: Intel Corporation 4 Series Chipset Integrated Graphics Controller [8086:2e32] (rev 03)
因此,您可以尝试grep Xorg日志:
$ grep -i chipset /var/log/Xorg.0.log
和dmesg
$ dmesg |grep -i agp
Xorg
日志被认为有具体型号我的唯一的事情。+1
调用的命令行工具inxi
将向您显示:
inxi -Gx
Graphics: Device-1: NVIDIA GP104 [GeForce GTX 1080] vendor: ASUSTeK driver: nvidia v: 435.21 bus ID: 01:00.0
Display: server: X.Org 1.20.5 driver: nvidia resolution: 3440x1440~75Hz
OpenGL: renderer: GeForce GTX 1080/PCIe/SSE2 v: 4.6.0 NVIDIA 435.21 direct render: Yes
从Github安装它:https : //github.com/smxi/inxi或使用Apt:
sudo apt install inxi