Автозапуск страницы cromium не работает.
-
Здравствуйте!Не получается реализовать автозапуск веб страницы.Делаю все как тут - http://devpractice.ru/raspberry-pi-autostart-chromium-in-kiosk-mode/Не работает. При перезагрузке ничего не открывается.В чем может быть проблема?Заранее спасибо!
-
На 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 offexit 0