如何禁用覆盆子pi上的屏幕消隐

时间:2013-08-16 09:30:25

标签: raspberry-pi raspbian

我正在运行raspbian,我正在使用它作为零售中心电视的显示设备。

我在启动时使用.profile

中的这一行运行铬
xinit /usr/bin/chromium --kiosk --incognito www.mysite.com

然而,禁用消隐的解决方案似乎没有用(虽然如果我在使用raspbian gui,它们确实有效)。

显示屏幕不会空白......非常重要(可以想象)......

有没有人对此有任何解决方案?

4 个答案:

答案 0 :(得分:2)

KBD似乎会导致屏幕消隐 您可以通过它的配置文件/ etc / kbd / config禁用KBD的屏幕消隐 使用文本编辑器(如vi,nano或leafpad)打开它 请注意,这需要管理权 然后更改行

BLANK_TIME=30

BLANK_TIME=0

要使这些设置生效,请重新启动/重新启动RPi,或使用以下命令重新启动KBD:

sudo /etc/init.d/kbd restart

如果您在此之后仍然处于空白状态,那么更改LightDM的配置可能会解决此问题 编辑LightDM的配置文件(/etc/lightdm/lightdm.conf,需要root),并在“[SeatDefaults]”

行之后添加以下行
xserver-command=X -s 0 dpms

请注意,我只测试了KBD方法!
来源:
http://www.raspberrypi.org/forums/viewtopic.php?f=28&t=18181
http://www.raspberrypi.org/forums/viewtopic.php?f=66&t=18200&p=180271#p180271

答案 1 :(得分:1)

我使用Raspbian在Raspberry Pi 2上禁用屏幕消隐。

/etc/X11/Xsession.d/上创建了一个文件:

# /etc/X11/Xsession.d/98x11-screen_blank
xset s off
xset -dpms
xset s noblank

确保已安装xset。最新的Raspbian已经拥有它。

答案 2 :(得分:0)

如果要在每次启动时禁用空白屏幕,只需键入:

sudo nano /etc/lightdm/lightdm.conf

并在[SeatDefaults]部分添加或取消注释此行:

xserver-command=X -s 0 -dpms

然后:

ctrl + x
y
press enter
reboot

等待20分钟它应该仍然开启。如果您使用Pixel运行Raspbian-jessie,那就是这样。

答案 3 :(得分:0)

您必须放置这些行[1]

@xset s noblank
@xset s off
@xset -dpms 

进入文件[2]

~/.config/lxsession/LXDE/autostart

[1] https://www.raspberrypi.org/forums/viewtopic.php?t=57552

[2] https://wiki.archlinux.org/index.php/LXDE#Autostart_Programs