Jump to content

How to get detailed information about your graphics card under Ubuntu


NiPeGun
 Share

1 post in this topic

Recommended Posts

Here are a few tips that you can use to get extra info of your vga under Ubuntu/Debian:

To know what VGA we have:
 


sudo lspci

To know a few extra details of our VGA:
 


sudo lshw -C display

Same us above but adds info about the output ports:
 


sudo lshw -C display; xrandr

This last code (; xrandr) shows the same info about the output ports that:
 


sudo xrandr -query

Now, if we want to go further to get more info about each output port:
 


sudo xrandr --verbose

And las, but no least, if we want to export that info about ports to a file:
 


sudo xrandr --verbose >> grafinfo.txt

You can find the file in your home directory.

 

Peace! And be helpful...

  • Like 1
Link to comment
Share on other sites

 Share

×
×
  • Create New...