xrandr 기본 노트북 화면 해상도를 변경할 때 "디스플레이를 열 수 없습니다"

xrandr 기본 노트북 화면 해상도를 변경할 때 "디스플레이를 열 수 없습니다"

xrandr에 연결된 모든 외부 모니터의 설정을 문제 없이 조정할 수 있습니다. 그러나 xrandr을 사용하여 설정을 변경한 후 기본 노트북 화면이 검게 변합니다. 복구 터미널로 부팅한 후 실행할 때 "디스플레이를 켤 수 없습니다"라는 메시지가 나타납니다.xrandr -q

내 노트북의 기본 해상도는 3840x2160 60hz입니다. 지원되는 모드를 사용해 보거나--scale 0.5x0.5

노트북은 nouveau 드라이버가 포함된 Void Linux를 실행하는 Lenovo X1 Extreme입니다.

내 /etc/X11/xorg.conf:

Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
    ModulePath   "/usr/lib/xorg/modules"
    FontPath     "/usr/share/fonts/X11/misc"
    FontPath     "/usr/share/fonts/X11/TTF"
    FontPath     "/usr/share/fonts/X11/OTF"
    FontPath     "/usr/share/fonts/X11/Type1"
    FontPath     "/usr/share/fonts/X11/100dpi"
    FontPath     "/usr/share/fonts/X11/75dpi"
EndSection

Section "Module"
#   Load  "glx-xorg"
#   Load  "vnc"
    Load  "glx"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
EndSection

Section "InputDevice"
    Identifier  "Mouse0"
    Driver      "mouse"
    Option      "Protocol" "auto"
    Option      "Device" "/dev/input/mice"
    Option      "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
    Identifier   "Monitor0"
    VendorName   "Monitor Vendor"
    ModelName    "Monitor Model"
        Modeline "3440x1440R"  319.75  3440 3488 3520 3600  1440 1443 1453 1481 +hsync -vsync
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "SWcursor"              # [<bool>]
        #Option     "HWcursor"              # [<bool>]
        #Option     "NoAccel"               # [<bool>]
        #Option     "ShadowFB"              # [<bool>]
        #Option     "VideoKey"              # <i>
        #Option     "WrappedFB"             # [<bool>]
        #Option     "GLXVBlank"             # [<bool>]
        #Option     "ZaphodHeads"           # <str>
        #Option     "PageFlip"              # [<bool>]
        #Option     "SwapLimit"             # <i>
        #Option     "AsyncUTSDFS"           # [<bool>]
        #Option     "AccelMethod"           # <str>
        #Option     "DRI"                   # <i>
        Option      "ModeValidation"            "AllowNonEdidModes"
    Identifier  "Card0"
    Driver      "nouveau"
    BusID       "PCI:1:0:0"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Monitor0"
    SubSection "Display"
        Viewport   0 0
        Depth     24
                Modes    "1920x1080"
    EndSubSection
EndSection

외부 모니터 연결 시 xrandr -q 출력:

Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 16384 x 16384
eDP-1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 344mm x 193mm
   1920x1080     60.00*+
   3840x2160     60.00 +
   3440x1440R    59.97  
   1920x1200     59.95  
   1600x1200     59.95  
   1680x1050     60.00  
   1400x1050     60.00  
   1280x1024     59.95  
   1280x960      59.99  
   1152x864      59.97  
   1024x768      59.95  
   800x600       59.96  
   640x480       59.94  
   720x400       59.97  
   640x400       59.96  
   640x350       59.84  
HDMI-1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 531mm x 298mm
   1920x1080     60.00*+  50.00    59.94    24.00    23.98  
   1920x1080i    60.00    50.00    59.94  
   1280x1024     75.02  
   1152x864      75.00  
   1280x720      60.00    50.00    59.94  
   1024x768     119.99    99.97    75.03    60.00  
   832x624       74.55  
   800x600      119.97    99.99    75.00    60.32  
   720x576       50.00  
   720x480       60.00    59.94  
   640x480      119.99   100.00    75.00    60.00    59.94  
   720x400       70.08  

eDP-1은 내 기본 노트북 모니터이고 HDMI-1은 외부 모니터입니다. 현재 외부 모니터 연결을 끊은 상태에서 부팅하면 "모니터를 켤 수 없습니다" 문제와 함께 노트북이 검은색 화면으로 부팅됩니다. 연결된 외부 모니터로 부팅하면 노트북 화면이 여전히 검게 표시되지만 모니터는 예상대로 작동합니다.

감사해요.

관련 정보