모니터를 사용하지 않을 때 어떻게 전원을 끌 수 있나요?

모니터를 사용하지 않을 때 어떻게 전원을 끌 수 있나요?

X 기간 동안 활동이 없으면 Debian 8 서버의 표시를 끄고 싶습니다.

내 편집을 시도했는데 /etc/X11/xorg.conf이제 다음과 같습니다.

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 375.20  (buildmeister@swio-display-x86-rhel47-06)  Tue Nov 1
5 17:49:44 PST 2016

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
    Option "StandbyTime" "1"
    Option "SuspendTime" "1"
    Option "OffTime" "1"
    Option         "BlankTime" "1"
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"
                Depth       24
        EndSubSection
EndSection

이제 꺼졌지만 디스플레이는 계속 켜져 있습니다. (LCD가 있으므로 백라이트는 항상 켜져 있습니다.)

디스플레이를 완전히 끄는 방법은 무엇입니까? 저는 엔비디아 그래픽 카드를 사용하고 있습니다.

답변1

X 세션의 화면을 비우려면 다음 .xinitrc과 같이 입력하십시오.

xset dpms A B C

A B C대기, 일시 중지 및 전원 끄기에 대한 시간 초과 값은 각각 어디에 있습니까? 내 생각에 그것들을 모두 똑같이 만들었다면 그때쯤에는 전원이 꺼질 것 같아요.

tty 화면을 비우려면 다음을 사용하십시오.

setterm -blank 0 -powerdown 0

어디. 또한 리디렉션을 통해 특정 tty로 보낼 수도 있습니다 >>/dev/ttyX.

DPMS 사용에 대한 자세한 내용은 여기에서 확인할 수 있습니다.

https://wiki.archlinux.org/index.php/Display_Power_Management_Signaling

관련 정보