Nvidia OptimusノートブックのIntelドライバが内部ディスプレイを認識しない

Nvidia OptimusノートブックのIntelドライバが内部ディスプレイを認識しない

私はnVidiaオプティマスディスプレイを搭載したThinkPad W520ノートブックを持っています。最近LinuxシステムをDVIにアップグレードしましたが、内部モニタは利用できません。以前は、次の設定で内部画面と外部DVIモニタの両方を使用できましたlinux-4.2.5nvidia-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

これは、Intelドライバに問題があることを意味しますか?

追加のデバッグに関する提案はありますか?

ベストアンサー1

おすすめ記事