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

Cra*_*ine 4 linux electrical-power dell-poweredge

这些 PowerEdge 系统上的显示器在一段时间后进入休眠状态。通常,当您插入 KVM 时,您必须按一个键来“唤醒”显示器。我将这些服务器连接到 KVM 切换器,我希望显示器不要进入睡眠状态——因此当您通过 KVM 切换器选择系统时,您会立即看到控制台显示。这些机器上的操作系统是 Linux、Ubuntu Lucid (10.04)。

And*_*ase 6

使用 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"
Run Code Online (Sandbox Code Playgroud)

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

从 X11 外部使用登录会话,您可以执行以下操作:

setterm -blank 0
setterm -powersave off
Run Code Online (Sandbox Code Playgroud)

在没有登录会话的 X11 外部,您可以在引导加载程序中使用以下内核参数:

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