본문 바로가기
프로그래밍 이야기/기타

[Ubuntu] 그래픽 카드(GPU) 정보 확인하기

by meticulousdev 2022. 4. 15.
반응형

    우분투 환경에서 그래픽 카드 정보를 확인 때 주로 사용하는 명령어는 다음과 같습니다.

 

lspci | grep -i VGA
sudo lshw -C display

 

위의 명령어를 사용하면 GPU 정보를 자세히 알려주지만 경우에 따라서는 어느 제조사에서 만들었는지만 알려줍니다.

 

$ lspci | grep -i VGA

0000:00:02.0 VGA compatible controller: Intel Corporation Device 9a60 (rev 01)
0000:01:00.0 VGA compatible controller: NVIDIA Corporation Device 2520 (rev a1)
$ sudo lshw -C display
 *-display
      description: VGA compatible controller
      product: NVIDIA Corporation
      vendor: NVIDIA Corporation
      ... (중략)
  *-display
      description: VGA compatible controller
      product: Intel Corporation
      vendor: Intel Corporation
      ... (하략)

 

이럴 때는 pci 정보를 update 해주면 됩니다.

 

Ubuntu Manpage: update-pciids - download new version of the PCI ID list

 

Ubuntu Manpage: update-pciids - download new version of the PCI ID list

Powered by the Ubuntu Manpage Repository, file bugs in Launchpad © 2019 Canonical Ltd. Ubuntu and Canonical are registered trademarks of Canonical Ltd.

manpages.ubuntu.com

$ sudo update-pciids
$ sudo update-pciids

...(중략)...

/usr/share/misc/pic 100%[===================>]

...(중략)...

Done.

 

정상적으로 완료가 되면 Done. 이 출력됩니다. 이제 위에서 사용했던 명령어들을 입력하면 그래픽 카드의 정보가 처음 원했던 방향으로 출력됩니다.

 

$ lspci | grep -i VGA
0000:00:02.0 VGA compatible controller: Intel Corporation TigerLake-H GT1 [UHD Graphics] (rev 01)
0000:01:00.0 VGA compatible controller: NVIDIA Corporation GA106M [GeForce RTX 3060 Mobile / Max-Q] (rev a1)
$ sudo lshw -C display
 *-display
      description: VGA compatible controller
      product: GA106M [GeForce RTX 3060 Mobile / Max-Q]
      vendor: NVIDIA Corporation
      ... (중략) ...
  *-display
      description: VGA compatible controller
      product: TigerLake-H GT1 [UHD Graphics]
      vendor: Intel Corporation
      ... (하략)

 

긴 글 읽어주셔서 감사합니다. 
글과 관련된 의견은 언제든지 환영입니다.
반응형

댓글