Raspberry Pi screen blanking: Difference between revisions

From Wurst-Wasser.net
Jump to navigation Jump to search
(Created page with "I wanted the (text)-terminal to blank on activity, so the HDMI-connected display will turn off. # vi /etc/rc.local -> insert <tt>settermm -blank 5</tt> # shutdown -r now -...")
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 2: Line 2:


  # vi /etc/rc.local
  # vi /etc/rc.local
-> insert <tt>settermm -blank 5</tt>
then insert  
setterm -blank 5 -powersave hsync -powerdown 1
to take changes effect:
  # shutdown -r now
  # shutdown -r now


Line 8: Line 10:
* Links
* Links
** https://www.raspberrypi.org/forums/viewtopic.php?t=43932
** https://www.raspberrypi.org/forums/viewtopic.php?t=43932
[[Category:RaspberryPi]]

Latest revision as of 13:34, 20 May 2019

I wanted the (text)-terminal to blank on activity, so the HDMI-connected display will turn off.

# vi /etc/rc.local

then insert

setterm -blank 5 -powersave hsync -powerdown 1

to take changes effect:

# shutdown -r now