Monitores corretos não detectados em 16.04 Nvidia ou Nouveau

2

Após a instalação do 16.04, um Dell 2408WFP não foi detectado pelo driver Nouveau padrão. Eu então instalei o driver da Nvidia esperando um resultado diferente, mas isso produziu o mesmo resultado.

Agora mudei de monitor novamente e ainda não está aparecendo. Esses monitores aparecem apenas como CRT-0 no painel de controle NVIDIA X Server Settings .

Alguma idéia do que eu posso fazer para forçar o X e os drivers da Nvidia a detectar o monitor apropriado que está conectado?

Aqui está uma cópia do meu Xorg.0.log para revisão.

Quando modifico xorg.conf com o seguinte:

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

Eu infelizmente recebo o seguinte erro:

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)
    
por ylluminate 15.07.2016 / 22:04

1 resposta

0

Consegui resolver isso configurando manualmente meu próprio /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
    
por ylluminate 19.07.2016 / 22:43