How to check which graphic card is used by the system?

13,743

inxi is a helpful little system info tool that collects all kinds of information about your soft- and hardware and outputs the user relevant pieces in a nice and understandable format.

You install it using sudo apt-get install inxi.

Then you can run inxi -G to print graphics related information.

Here's an example from my hardware:

$ inxi -G
Graphics:  Card-1: Intel Sky Lake Integrated Graphics
           Card-2: NVIDIA GM108M [GeForce 940M]
           Display Server: X.Org 1.18.3 driver: nvidia Resolution: [email protected]
           GLX Renderer: GeForce 940M/PCIe/SSE2 GLX Version: 4.5.0 NVIDIA 367.44

You see I have a built-in Intel graphics chip and an Nvidia chip. The active device is my Nvidia chip.

Share:
13,743

Related videos on Youtube

jcubic
Author by

jcubic

My name is Jakub T. Jankiewicz, I'm coding mostly in JavaScript. I love Lisp Macros, jQuery library, ReactJS, CSS3, HTML5, SVG, GNU/Linux, GNU Emacs and Inkscape. Working with JavaScript and R for Roche/Genentech via Astek Poland. my english blog - In Code We Trust my polish blog - Głównie JavaScript (ang. Mostly JavaScript) Usefull Links Other links Yet another links Few of my JavaScript Open Source projects: jQuery Terminal: JavaScript library for Web based Terminal Emulator LIPS - Powerful Scheme based lisp interpreter written in JavaScript sysend.js: Library for sending messages between Windows and Tabs Gaiman Programming Language and Text based Game engine GIT Web Terminal Posts: EchoJS News, EchoJS News (2), HackerNews

Updated on September 18, 2022

Comments

  • jcubic
    jcubic almost 2 years

    I have laptop with two graphic cards one build in Intel and the other is nvidia GeForce. I've installed Xubuntu 16.04 and now I want to check which graphic card is used by the system. Probably build in because there are not drivers for Nvidia but I want to be sure.

  • jcubic
    jcubic over 7 years
    I already have inxi installed after fresh install of Xubuntu.
  • Adi Yono
    Adi Yono over 5 years
    How do you know NVIDIA is the running card?
  • Byte Commander
    Byte Commander over 5 years
    @AdiYono It is referred to in the GLX Renderer: line.