这些 PowerEdge 系统上的显示器会在一段时间后进入睡眠状态。通常,当您插入 KVM 时,您必须按下一个键来“唤醒”显示器。我将这些服务器连接到 KVM 交换机,并且我希望显示器不会进入睡眠状态 - 因此当您通过 KVM 交换机选择系统时,您会立即看到控制台显示。这些机器上的操作系统是 Linux,Ubuntu Lucid (10.04)。
答案1
使用 X11 时您想禁用 DPMS /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.