해상도 변경 시 Xrandr 데비안 검은색 화면

해상도 변경 시 Xrandr 데비안 검은색 화면

wheezy의 해상도를 1920x1080으로 변경할 수 없어 멈췄습니다. 1360x768로 조금 낮추겠습니다.

처음에는 nvidia 설정에서 1920x1080만 선택할 수 있었습니다.옵션 "ModeValidation" "AllowNonEdidModes"모든 해상도는 xorg.conf에 나열되어 있지만 검은색 화면으로 변경하고 싶을 때...

xrandr을 변경할 때에도 동일한 문제가 발생합니다.

xrandr --output LVDS-0 --mode 1360x768 --rate 60 ==> black screen

많은 솔루션을 테스트했지만 아무 일도 일어나지 않았습니다. 이제 edid 및 kms에 문제가 있다고 생각합니다. nvidia-settings에서 edid.bin 파일을 가져와서 grub 기본값에 추가해 보았습니다.

GRUB_CMDLINE_LINUX_DEFAULT="quiet drm_kms_helper.edid_firmware=edid/edid.bin"

OR 

GRUB_CMDLINE_LINUX_DEFAULT="quiet nomodeset nouveau.modeset=0"

하지만 변한 건 아무것도 없습니다. 제가 조카의 지팡이를 훔치기 전에 할 수 있는 일이 있나요?

부록:

$ xrandr

Screen 0: minimum 8 x 8, current 1920 x 1080, maximum 16384 x 16384
VGA-0 disconnected (normal left inverted right x axis y axis)
LVDS-0 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 382mm x 215mm
   1920x1080      60.0*+   59.9     40.0  
   1680x1050      59.9  
   1440x900       59.9  
   1400x1050      60.0  
   1360x768       60.0     59.8  
   1280x1024      60.0  
   1280x960       60.0  
   1152x864       60.0  
   1024x768       60.0  
   ...
DP-0 disconnected (normal left inverted right x axis y axis)
HDMI-0 disconnected (normal left inverted right x axis y axis)
DP-1 disconnected (normal left inverted right x axis y axis)

$ 고양이/etc/X11/xorg.conf

# nvidia-settings: X configuration file generated by nvidia-settings
# nvidia-settings:  version 304.88  (pbuilder@cake)  Wed Apr  3 08:58:25 UTC 2013

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 304.48  (pbuilder@cake)  Wed Sep 12 10:54:51 UTC 2012

    Section "ServerLayout"
        Identifier     "Default Layout"
        Screen      0  "Screen0" 0 0
        InputDevice    "Keyboard0" "CoreKeyboard"
        InputDevice    "Configured Mouse"
        Option         "Xinerama" "0"
    EndSection

    Section "InputDevice"

        # generated from default
        Identifier     "Keyboard0"
        Driver         "keyboard"
    EndSection

    Section "InputDevice"
        Identifier     "Configured Mouse"
        Driver         "mouse"
        Option         "Name" "Razer Razer Diamondback 3G"
        Option         "CorePointer"
        Option         "Device" "/dev/input/mice"
        Option         "Protocol" "ExplorerPS/2"
        Option         "Buttons" "9"
        Option         "Resolution" "1800"
        Option         "ZAxisMapping" "4 5"
    EndSection

    Section "Monitor"
        Identifier     "Monitor0"
        VendorName     "Unknown"
        ModelName      "Chi Mei Optoelectronics corp."
        HorizSync       44.0 - 67.0
        VertRefresh     40.0 - 60.0
        Option         "DPMS"
    EndSection

    Section "Device"
        Identifier     "Video Card"
        Driver         "nvidia"
    EndSection

    Section "Device"
        Identifier     "Device0"
        Driver         "nvidia"
        VendorName     "NVIDIA Corporation"
        BoardName      "GeForce GTX 670M"
        Option         "NoLogo" "on"
        Option         "ModeValidation" "AllowNonEdidModes"
    EndSection

    Section "Screen"
        Identifier     "Default Screen"
        Device         "Video Card"
        Monitor        "Monitor0"
        Option         "NoLogo" "1"
        Option         "RenderAccel" "1"
        SubSection     "Display"
            Modes      "nvidia-auto-select"
        EndSubSection
    EndSection

    Section "Screen"
        Identifier     "Screen0"
        Device         "Device0"
        Monitor        "Monitor0"
        DefaultDepth    24
        Option         "Stereo" "0"
        Option         "nvidiaXineramaInfoOrder" "DFP-0"
        Option         "metamodes" "nvidia-auto-select +0+0"
        SubSection     "Display"
            Depth       24
        EndSubSection
    EndSection

감사해요

관련 정보