На RPi3 у меня работает:
открывем файл:
root@konveier:/home/pi# nano /home/pi/.config/lxsession/LXDE-pi/autostart
мой конфиг:
@lxpanel --profile LXDE-pi@pcmanfm --desktop --profile LXDE-pi#@xscreensaver -no-splash@xset s noblank@xset s off@xset -dpms#@rm -rf /home/pi/.cache@/usr/bin/chromium-browser --noerrdialogs --disable-session-crashed-bubble --disable-infobars --kiosk имя_сайта@xset s noblank@xset s off@xset -dpms
долго бился чтоб в скреенсайвер не уходил через 30минут:
root@konveier:/home/pi# nano /etc/rc.local
добавил
setterm...#!/bin/sh -e## rc.local## This script is executed at the end of each multiuser runlevel.# Make sure that the script will "exit 0" on success or any other# value on error.## In order to enable or disable this script just change the execution# bits.##
By default this script does nothing.
# Print the IP address_IP=$(hostname -I) || trueif [ "$_IP" ]; then printf "My IP address is %s\n" "$_IP"fisetterm -blank 0 -powerdown 0 -powersave off
exit 0