如何查看我拥有的视频卡?


Answers:


16
sudo lspci|grep VGA

显示我有一个:

01:00.0 VGA compatible controller: ATI Technologies Inc NI Whistler [AMD Radeon HD 6600M Series]

如果您想要更多信息,可以安装mesa-utils 安装mesa-utils。除了显而易见的事情:

$ glxinfo|grep renderer
OpenGL renderer string: AMD Radeon 6600M and 6700M Series

$ glxinfo|grep vendor
server glx vendor string: ATI  
client glx vendor string: ATI  
OpenGL vendor string: ATI Technologies Inc.  

它将显示约3页有关正在使用的驱动程序的信息。


2

此外,lspci您可以使用hwinfo 安装hwinfo,它是一个非常有用的工具,可用于获取有关系统上各种硬件组件及其驱动程序的详细信息。

默认情况下,hwinfo打印出很长的信息列表,但是您可以通过以下方式指定所需信息:

hwinfo --gfxcard

其他选项是:

all,  bios,  block,  bluetooth,  braille,  bridge, camera, 
cdrom, chipcard,  cpu,  disk,  dsl,  dvb,  fingerprint,  floppy,
framebuffer,  gfxcard,  hub,  ide,  isapnp, isdn, joystick, 
keyboard, memory, modem, monitor, mouse, netcard,  network,  
partition,  pci,  pcmcia, pcmcia-ctrl, pppoe, printer, scanner, 
scsi, smp, sound, storage-ctrl, sys, tape,  tv,  usb,  usb-ctrl,  
vbe, wlan, and zip.

欲获得更多信息

man hwinfo
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.