Hi Igor,
Thanks -- that solved the issue.
I found this resource with additional useful commands --- http://www.armadeus.com/wiki/index.php?title=FrameBuffer
For anyone looking::
# echo 0 > /sys/class/graphics/fbcon/cursor_blink
also possible at boot time (with 3.x recent kernels):
BIOS> setenv extrabootargs vt.global_cursor_default=0
- To make it blinking again:
# echo 1 > /sys/class/graphics/fbcon/cursor_blink
- To grab a screenshot of a running Framebuffer application, use FBGrab
- To enter in Framebuffer sleep mode:
# echo 1 > /sys/class/graphics/fb0/blank
- To leave Framebuffer sleep power mode:
# echo 0 > /sys/class/graphics/fb0/blank
- To set "sleep mode"/screensaver entering time (where X is a time in minute; 0 = never):
# echo -e '\033[9;X]' > /dev/tty1 (from serial console)
or
# echo -e '\033[9;X]' (from framebuffer console)
or to set it at each boot, use /etc/inittab:
tty1::sysinit:echo -e '\033[9;X]'
Other usefull ESC sequences
- To (definitly) hide cursor:
# echo -e '\033[?17;0;0c' > /dev/tty1 (from serial console)
or
# echo -e '\033[?17;0;0c' (from framebuffer console)
# echo -e '\033[?5h' > /dev/tty1
# echo -e '\033[?5l' > /dev/tty1
Regards,
Erez