A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
[Solved]How to start a python script @reboot?
- 
 thanks so far. 
 i have already put this as cron: @reboot sudo /usr/bin/python /home/pi/monitor.py &
 but nothing happenswhen i want to start this, i will get this message: 
 /etc/init.d/cron restart
 […] Restarting cron (via systemctl): cron.serviceFailed to restart cron.service: Access denied
 failed!
 So what can i do now?
- 
 @pauabaer It’s easier to just make your python code executable. Then you can just start it with cron with 
 @reboot /home/pi/monitor.py
- 
 Two questions: - how do i make it executable?
- when the script is executable, the problem with the failure is still existing, isn’t it?
 
- 
 @pauabaer To make the code executable: - Add #!/usr/bin/python3 to the top of your code.(1st line)
- open terminal and type sudo chmod +x /home/pi/monitor.py (this will make your code executable. You can check that it’s executable by typing “./monitor.py” You code should run.
 Then you can add the line @reboot /home/pi/monitor.py to the crontab. 
- 
 Ok. Thanks. I made these two steps and i can see via htop that the script is running. 
