我如何检查我有哪种类型的视频卡?

我如何检查我有哪种类型的视频卡?

Ubuntu 9.04 中是否有任何命令行或程序可以用来获取有关我的视频卡的信息?

答案1

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 --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

相关内容