How do I check what GPU model is installed in Linux from the command line?
- Open the terminal applicationhttps://www.cyberciti.biz/faq/linux-tell-which-graphics-vga-card-installed/
- Type the following command to check what GPU is installed in Linux:
lspci | grep -i --color 'vga\|3d\|2d'
- Another option is to run the lshw command:
lshw -class display
For more info see my page:
https://www.cyberciti.biz/faq/linux-tell-which-graphics-vga-card-installed/