web-dev-qa-db-fra.com

Comment puis-je vérifier mon type de carte vidéo?

Existe-t-il une ligne de commande ou un programme dans Ubuntu 9.04 que je peux utiliser pour obtenir des informations sur ma carte vidéo?

9
Tom Brito
Sudo lspci|grep VGA

me montre que j'ai un:

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

Si vous voulez encore plus d’informations, vous pouvez installer mesa-utilsInstall mesa-utils . Outre les choses évidentes:

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

Il montrera environ 3 pages d'informations sur le pilote utilisé.

16
Rinzwind

Outre lspci, vous pouvez utiliser hwinfoInstall hwinfo qui est un outil très utile pour obtenir des informations détaillées sur tous les types de composants matériels et leurs pilotes sur votre système.

Par défaut, hwinfo imprime une liste assez longue d'informations, mais vous pouvez spécifier ce que vous voulez en:

hwinfo --gfxcard

Les autres options sont:

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.

Pour plus d'informations

man hwinfo
2
Seppo Erviälä