Nvidia Optimus 노트북의 Intel 드라이버가 내부 디스플레이를 인식하지 못합니다.

Nvidia Optimus 노트북의 Intel 드라이버가 내부 디스플레이를 인식하지 못합니다.

저는 nVidia 옵티머스 디스플레이가 장착된 ThinkPad W520 노트북을 가지고 있습니다. 최근에 Linux 시스템을 DVI로 업그레이드했는데 이제 내부 모니터를 사용할 수 없습니다 . 이전에는 다음 설정으로 내부 화면과 외부 DVI 모니터를 모두 사용할 수 있었습니다 linux-4.2.5.nvidia-358X11

를 통해 부팅했습니다 lightdm. 내 display_setup.sh스크립트는 다음과 같습니다

#!/bin/sh
xrandr --setprovideroutputsource modesetting NVIDIA-0
xrandr --auto

/etc/X11/xorg.conf.d/20-nvidia.conf것은:

Section "ServerLayout"
    Identifier "layout"
    Screen 0 "nvidia"
    Inactive "intel"
EndSection

Section "Device"
    Identifier "nvidia"
    Driver "nvidia"
    BusID "PCI:1:0:0"
EndSection

Section "Screen"
    Identifier "nvidia"
    Device "nvidia"
    Option "AllowEmptyInitialConfiguration"
EndSection

Section "Device"
    Identifier "intel"
    Driver "modesetting"
    Option "AccelMethod" "none"
EndSection

Section "Screen"
    Identifier "intel"
    Device "intel"
EndSection

/var/log/Xorg.0.log쇼:

[  1399.370] (--) NVIDIA(GPU-0): DFP-0: disconnected
[  1399.370] (--) NVIDIA(GPU-0): DFP-0: Internal LVDS
[  1399.370] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock

이는 인텔 드라이버에 문제가 있음을 의미합니까?

추가 디버깅에 대한 제안 사항이 있습니까?

관련 정보