Linux

如何在 Dell PowerEdge R310 上禁用顯示器睡眠

  • November 8, 2011

這些 PowerEdge 系統上的顯示器會在一段時間後進入睡眠狀態。通常,當您插入 KVM 時,您必須按一個鍵來“喚醒”顯示器。我正在將這些伺服器連接到 KVM 切換器,並且我希望顯示器不要進入睡眠狀態——因此,當您通過 KVM 切換器選擇系統時,您會立即看到控制台顯示。這些機器上的作業系統是 Linux、Ubuntu Lucid (10.04)。

使用 X11,您想在/etc/X11/xorg.conf.

#In the "Monitor" section, you need a line like:
       Option          "DPMS"
#Then, in the "ServerLayout" section (for Xorg 7.2 and later, make a
#separate ServerFlags section instead), include lines like this:
       Option          "BlankTime"     "0"
       Option          "StandbyTime"   "0"
       Option          "SuspendTime"   "0"
       Option          "OffTime"       "0"

#Alternatively try this in the Monitor section:
       Option          "DPMS"          "False"

主要來自:http ://www.shallowsky.com/linux/x-screen-blanking.html

從 X11 外部使用登錄會話,您可以執行以下操作:

setterm -blank 0
setterm -powersave off

在沒有登錄會話的 X11 之外,您可以在引導載入程序中使用以下核心參數:

consoleblank=   [KNL] The console blank (screen saver) timeout in
               seconds. Defaults to 10*60 = 10mins. A value of 0
               disables the blank timer.

引用自:https://serverfault.com/questions/328568