web-dev-qa-db-fra.com

Moniteurs corrects non détectés sous 16.04 Nvidia ou Nouveau

Lors de l'installation de 16.04, un pilote Dell 2408WFP n'a pas été détecté par le pilote Nouveau par défaut. J'ai ensuite installé le pilote Nvidia dans l'espoir d'obtenir un résultat différent, mais le même résultat a été obtenu.

J'ai à nouveau changé de moniteur, et il ne s'affiche toujours pas. Ces moniteurs ne s'affichent que sous la forme CRT-0 dans le panneau de configuration NVIDIA X Server Settings.

Des idées sur ce que je peux faire pour forcer X et les pilotes Nvidia à détecter le moniteur connecté?

Voici une copie de mon Xorg.0.log pour examen.

Quand je modifie xorg.conf avec ce qui suit:

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

J'ai malheureusement l'erreur suivante:

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
ylluminate

J'ai pu résoudre ce problème en configurant manuellement mon propre /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
ylluminate