I would like to know the model of my graphics card. I think it may be an ATI, but I want to be sure!
I have Ubuntu 11.10 (32 bit) and an Asus A6 VA laptop.
I would like to know the model of my graphics card. I think it may be an ATI, but I want to be sure!
I have Ubuntu 11.10 (32 bit) and an Asus A6 VA laptop.
Open up "Terminal", and type:
lspci | grep VGA
There, you'll find your GPU card's model.
For detailed information about your graphics card, usually including its make and model, run:
This might give the make and model name more often than
lspci
, but it is not guaranteed to give it (nor islspci
).sudo lshw -C display
is equivalent.You can run this (either one) without
sudo
, but you're a little less likely to get as much information. Still,lshw -C video
is a reasonable choice if you don't have administrative powers.If you like, you can parse the output to get just the line with the model name:
Or if you need to extract just the name (for example, for scripting purposes--but remember there isn't always anything to extract):
(Don't forget the space just after
-Fproduct:
, before the closing'
.)As an example: on my system, this gives:
Sometimes lspci is not enough:
e.g.: you can end up with something like this:
so then you can try to grep Xorg log:
and dmesg
If GUI/display available, you can try:
(Other answers where either only giving a chipset range or no manufacturer info for my AMD card.)
To get exact chipset model, video memory, and drivers info:
To get card manufacturer name:
Ubuntu 20.04 Settings -> About
You can either open settings by clicking as mentioned at: https://askubuntu.com/a/1144742/52975 but I just do:
So under "Graphics" I can see that my GPU model is "Quadro M1200/PCIe/SSE2".
nvidia-settings
Mixes runtime with some static info.
More details: How do I check if Ubuntu is using my NVIDIA graphics card?
In KDE you can use the
kinfocenter
(open a command prompt from a graphical environment and type that, or type it at the K-menu [application menu] prompt; or navigate to K → Computer → Info Center ... ).Personally I use lshw or lspci as in other answers, but another possibility is :
glxinfo | grep Device
Which maybe only works if your device is using OpenGL, not sure, but for me this gives:
which is quite neat. The second number is the kernel version, fwiw.
If you want to detect your graphic card from Ubuntu Desktop, try this:
Note: This answer was done in Ubuntu 16.04 LTS version.
The command line tool called
inxi
will show You:Install it from Github : https://github.com/smxi/inxi or using Apt: