Find Graphics Card/Driver Details

55,010

Solution 1

You can use glxinfo (form the meta-utils package) for information about your driver and OpenGL.
Run

glxinfo | grep OpenGL

for info about your driver and OpenGL.


You can use lspci for info about your PCI devices (so, VGA too).
Use

lspci -v -s `lspci | awk '/VGA/{print $1}'`

for info about you video card.

Solution 2

Follow System Settings - Software & Updates - Additional Drivers

Share:
55,010

Related videos on Youtube

Noob Doob
Author by

Noob Doob

Updated on September 18, 2022

Comments

  • Noob Doob
    Noob Doob almost 2 years

    I have installed Ubuntu 13.04. How can I check that I have a driver for my graphics card installed and see details about it?

  • mpen
    mpen over 10 years
    glxinfo isn't installed on my system and it's not in apt-get, but the 2nd command worked well. Thank you.
  • Roshana Pitigala
    Roshana Pitigala about 4 years
    Use sudo apt-get install mesa-utils to install glxinfo