Posts Linux check graphics card
Post
Cancel

Linux check graphics card

  • Use lspci to get all devices and then grep to filter result
1
2
3
4
$ lspci -vnn | grep VGA

01:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Thames [Radeon HD 7550M/7570M/7650M] [1002:6841] (prog-if 00 [VGA controller])

1
2
3
4
5
6
7
$ lspci -k | grep -EA3 'VGA|3D|Display'

01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Thames [Radeon HD 7550M/7570M/7650M]
	Subsystem: Sony Corporation Thames [Radeon HD 7550M/7570M/7650M]
	Kernel driver in use: radeon
	Kernel modules: radeon

This post is licensed under CC BY 4.0 by the author.