Правильные мониторы не обнаружены на 16.04 Nvidia или Nouveau

После установки 16.04 Dell 2408WFP не был обнаружен драйвером Nouveau по умолчанию. Затем я установил реальный драйвер Nvidia, надеясь на другой результат, но это дало тот же результат.

Теперь я снова сменил мониторы, и они все еще не отображаются. Эти мониторы отображаются только как CRT-0 на панели управления NVIDIA X Server Settings.

Есть какие-нибудь идеи относительно того, что я могу сделать, чтобы заставить драйверы X и Nvidia правильно определить подключенный монитор?

Вот копия моего журнала Xorg.0.log для обзора .

Когда я изменяю xorg.conf следующим образом:

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       28.0 - 33.0
    VertRefresh     43.0 - 72.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Viewport   0 0
        Depth     24
        Modes "1366x768"
    EndSubSection
EndSection

я, к сожалению, получаю следующую ошибку:

Could not apply the stored configuration for monitors

none of the selected modes were compatible with the possible modes:
Trying modes for CRTC 634
CRTC 634: trying mode 640x480@60Hz with output at 1152x864@60Hz (pass 0)
CRTC 634: trying mode 320x240@120Hz with output at 1152x864@60Hz (pass 0)
CRTC 634: trying mode 640x480@60Hz with output at 1152x864@60Hz (pass 1)
CRTC 634: trying mode 320x240@120Hz with output at 1152x864@60Hz (pass 1)
Trying modes for CRTC 635
CRTC 635: trying mode 640x480@60Hz with output at 1152x864@60Hz (pass 0)
CRTC 635: trying mode 320x240@120Hz with output at 1152x864@60Hz (pass 0)
CRTC 635: trying mode 640x480@60Hz with output at 1152x864@60Hz (pass 1)
CRTC 635: trying mode 320x240@120Hz with output at 1152x864@60Hz (pass 1)
Trying modes for CRTC 636
CRTC 636: trying mode 640x480@60Hz with output at 1152x864@60Hz (pass 0)
CRTC 636: trying mode 320x240@120Hz with output at 1152x864@60Hz (pass 0)
CRTC 636: trying mode 640x480@60Hz with output at 1152x864@60Hz (pass 1)
CRTC 636: trying mode 320x240@120Hz with output at 1152x864@60Hz (pass 1)
Trying modes for CRTC 637
CRTC 637: trying mode 640x480@60Hz with output at 1152x864@60Hz (pass 0)
CRTC 637: trying mode 320x240@120Hz with output at 1152x864@60Hz (pass 0)
CRTC 637: trying mode 640x480@60Hz with output at 1152x864@60Hz (pass 1)
CRTC 637: trying mode 320x240@120Hz with output at 1152x864@60Hz (pass 1)
2
задан 20 July 2016 в 09:43

1 ответ

Я смог разрешить это путем ручной установки моего собственного /etc/X11/xorg.conf:

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Acer"
    ModelName      "x183h"
    HorizSync       30.0 - 80.0
    VertRefresh     55.0 - 75.0
    Option         "DPMS"
    ModeLine       "1366x768_60_0" 85.9 1366 1438 1626 1798 768 769 772 795 +hsync +vsync
    Option         "IgnoreEDID" "True"
    Option         "UseEDID" "FALSE"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    Option         "ModeValidation"  "NoWidthAlignmentCheck, NoDFPNativeResolutionCheck"
    Option         "ExactModeTimingsDVI" "TRUE"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
        Modes       "1366x768_60_0"
    EndSubSection
EndSection
0
ответ дан 20 July 2016 в 09:43

Другие вопросы по тегам:

Похожие вопросы: