설치된 인텔 그래픽 카드 드라이버 버전을 어떻게 찾습니까?


10

내 노트북에는 통합 인텔 GPU와 개별 Nvidia GPU가 함께 제공됩니다.

Ubuntu 18.04를 설치 한 후 Nvidia 서버 설정 앱이 이미 설치되었으며이를 통해 드라이버 버전을 볼 수 있습니다.

인텔 드라이버를 위해 어떻게해야합니까?

답변:


17

다음 lspci명령으로 모든 비디오 어댑터를 볼 수 있습니다

lspci -k | grep -EA3 'VGA|3D|Display'
  |    | |   |    |        \- Only VGA is not good enough,
  |    | |   |    |           because Nvidia mobile adapters
  |    | |   |    |           are shown as 3D and some AMD
  |    | |   |    |           adapters are shown as Display.
  |    | |   |    \---------  Print 3 lines after the regexp match.
  |    | |   \--------------  program for searching patterns in files
  |    | |                    (regular expressions)
  |    | \------------------  pipe used for passing the results of the
  |    |                      first command (lspci -k) to the next (grep)
  |    \--------------------  Show kernel drivers handling each device.
  \-------------------------  utility for displaying information
                              about PCI buses in the system and 
                              devices connected to them

출력은 다음과 같습니다.

00:02.0 VGA compatible controller: Intel Corporation HD Graphics 620 (rev 02)
    DeviceName:  Onboard IGD
    Subsystem: Dell HD Graphics 620
    Kernel driver in use: i915

01:00.0 3D controller: NVIDIA Corporation GM108M [GeForce 940MX] (rev a2)
    Subsystem: Dell GM108M [GeForce 940MX]
    Kernel driver in use: nouveau
    Kernel modules: nouveau, nvidia_drm, nvidia

보시다시피 인텔 GPU와 Nvidia GPU가 있습니다. Intel GPU는 i915 드라이버를 사용하고 Nvidia는 nouveau를 사용하고 있습니다. Kernel driver in use:출력 섹션 에서이를 확인할 수 있습니다 .


2

표준 인텔 드라이버는 1) 커널, 2) Mesa 3D 그래픽 라이브러리의 내장 부분입니다. 따라서 자체 버전 관리 기능이 없습니다. 최신 커널과 Mesa가있는 한 최신 Intel 드라이버도 있습니다.

활성 커널 버전을 보려면 uname -r또는을 사용하십시오 dpkg -l | grep linux-image.

활성화 된 Mesa 버전을 보려면 glxinfo -B또는을 사용하십시오 dpkg -l | grep mesa.

Xorg 내에서 인텔 드라이버와의 인터페이스는 xserver-xorg-video-intel모듈에 의해 처리 될 수 있습니다 . 다시 한 번, dpkg -l버전을 확인 하는 데 사용 하십시오 (그리고 패키지가 없을 수도 있습니다.이 경우 Xorg는 "modesetting"인터페이스를 통해 동일한 인텔 드라이버에 액세스합니다).

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.