How can I check what kind of video card I have?

18,594

Solution 1

sudo lspci|grep VGA

shows me I have a:

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

If you want even more information you can install mesa-utils Install mesa-utils. Besides the obvious things:

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

It will show about 3 pages of information about the driver in use.

Solution 2

Besides lspci you can use hwinfo Install hwinfo which is quite a useful tool for getting detailed information about all kinds of hardware components, and their drivers, on your system.

By default hwinfo prints out quite long list of information but you can specify what you want by:

hwinfo --gfxcard

Other options are:

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.

For more information

man hwinfo
Share:
18,594

Related videos on Youtube

The Student
Author by

The Student

My main interests: Object Oriented Programming (mainly Java, Python and C++) Mobile development (Android and iOS) Artificial Neural Networks Philosophy

Updated on September 18, 2022

Comments

  • The Student
    The Student over 1 year

    Is there any command line or program in Ubuntu 9.04 I can use to get information about my video card?