如何在Dell PowerEdge R310上显示睡眠状态

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

使用X11,您需要在/etc/X11/xorg.conf禁用DPMS。

 #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以外的login会话,您可以执行以下操作:

 setterm -blank 0 setterm -powersave off 

从X11外部没有login会话,你可以在你的引导程序中使用下面的内核参数:

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