我的安装是 Ubuntu 服务器 14.04,仅安装了 xorg 和 firefox。服务器启动并立即启动 Firefox,并以全屏模式显示所需的网页。 10 分钟后我的显示器进入睡眠状态。如何禁用显示器的睡眠功能?
答案1
我的 Debian 系统正在使用凯德5.26。
我的 X 没有 DPMS(显示电源管理信号)功能:
$ xset
To control Energy Star (DPMS) features:
-dpms Energy Star features off
$ xset q
DPMS (Energy Star):
Server does not have the DPMS Extension
$ xset -dpms
server does not have extension for -dpms option
相反,根据配置,它由 KDE 管理~/.config/powermanagementprofilesrc
。该文件是 KDE 的System settings
GUI 配置的。如果您使用 KDE,这[AC][DPMSControl]
就是您所需要的。注释它或删除它以禁用 DPMS 功能。
[AC]
icon=battery-charging
[AC][DPMSControl]
idleTime=540
lockBeforeTurnOff=0
[AC][DimDisplay]
idleTime=60000
[AC][HandleButtonEvents]
lidAction=1
powerButtonAction=16
powerDownAction=16
也可以kwriteconfig5
在终端上配置:kwriteconfig5 --file ~/.config/powermanagementprofilesrc --group AC --group DPMSControl --key idleTime 540
。
Screen locking
System settings
如果您也对配置'感兴趣Screen locking
,请参阅https://superuser.com/a/1768085/644826。
答案2
通常xset -dpms
应该这样做,尽管您的桌面环境可能有额外的工具来设置它。
答案3
使用xset s off
。此命令禁用监视器超时功能。
答案4
当服务器启动时,他也会启动一个init.d文件来启动这个特定的网站。该文件如下所示:“startx -e firefox ”http://www.mywebsite.com”
查看答案,我添加了额外的一行“xset -dpms; xset s Blank”,这并没有解决我的问题。
当 x 启动时,我还关闭了窗口并在终端中输入“xset -dpms; xset s Blank”,这也没有解决我的问题。
难道我做错了什么?