Graphics driver check on Ubuntu 22.04

This tutorial will show you how to check what graphics driver your Ubuntu 22.04 Jammy Jellyfish system is currently using and what graphics card model is part of your system’s hardware.

Knowing your video card model and graphics driver version can help you determine if you need to install a newer driver, and which model to download the driver for.

In this tutorial you will learn:

  • How to check what graphics driver your system is using
  • How to check what graphics card model you have
Check AMD Radeon VGA driver version by using the glxinfo -B command on Ubuntu 22.04
Check AMD Radeon VGA driver version by using the glxinfo -B command on Ubuntu 22.04
Software Requirements and Linux Command Line Conventions
Category Requirements, Conventions or Software Version Used
System Ubuntu 22.04 Jammy Jellyfish
Software lshw, mesa-utils
Other Privileged access to your Linux system as root or via the sudo command.
Conventions # – requires given linux commands to be executed with root privileges either directly as a root user or by use of sudo command
$ – requires given linux commands to be executed as a regular non-privileged user

Graphics driver check Ubuntu 22.04 Jammy Jellyfish step by step instructions



  1. To check for the currently used graphics driver execute:
    $ sudo lshw -c video
    
  2. Another alternative could be to use mesa utils:
    $ sudo apt update
    $ sudo apt install mesa-utils
    $ glxinfo -B
    
  3. If you wish to know what graphics card your system is using execute the following command:
    $ lspci -nn | grep -E 'VGA|Display'
    OR
    $ sudo lshw -c video