1
Computer Problem / Re: การตั้งค่าให้ RASPBERRY PI แปลงสัญญาณจาก HDMI TO VGA
« Last post by admin on 26, 08, 2020, 10:16:55 »Re: Auto open browser on boot
Quote
Wed Jun 13, 2012 1:09 pm
To launch a command automatically on login, put the command into a file named
.bashrc
in the user directory (for example /home/pi)
For example, the file could contain
chromium-browser --kiosk www.google.com
to launch Chromium in full-screen pointed to www.google.com
https://www.raspberrypi.org/forums/viewtopic.php?t=8298
auto restart raspberry
sudo crontab -e
@midnight /sbin/shutdown -r now
0 4 * * * /sbin/shutdown -r now //restart at 4am
Quote
Wed Jun 13, 2012 1:09 pm
To launch a command automatically on login, put the command into a file named
.bashrc
in the user directory (for example /home/pi)
For example, the file could contain
chromium-browser --kiosk www.google.com
to launch Chromium in full-screen pointed to www.google.com
https://www.raspberrypi.org/forums/viewtopic.php?t=8298
auto restart raspberry
sudo crontab -e
@midnight /sbin/shutdown -r now
0 4 * * * /sbin/shutdown -r now //restart at 4am