I want to run /home/myuser/go.py

How do I make that run in the background, everytime my linux machine boots up?

link|improve this question

74% accept rate
general what-happens-on-ubuntu-startup here: superuser.com/questions/151330/ubuntu-control-the-init-startup ... this might be "close enough" to consider a duplicate. – quack quixote Jun 22 '10 at 19:46
feedback

migrated from stackoverflow.com Jun 22 '10 at 19:10

This question came from our site for professional and enthusiast programmers.

3 Answers

You can put a script in the /etc/init.d/ directory (eg: /etc/init.d/go.py) for anything you want to run at bootup time.

http://www.debian-administration.org/article/Making_scripts_run_at_boot_time_with_Debian

link|improve this answer
5  
I prefer /etc/rc.local as you do not need to change the run-level links. – Dirk Eddelbuettel Jun 22 '10 at 19:05
@DirkEddel - I agree to that! – BloodPhilia Jun 22 '10 at 19:12
Perhaps you should add this as a separate answer so it can be voted up? – Steve Homer Jun 22 '10 at 20:48
feedback

There are many ways to do this (depending on which distribution of linux you are using there are different tools that are offered).

The easiest way is simply adding the script to /etc/init.d and then running the command

chmod +x go.py
update-rc.d go.py defaults

If you already set up the service, you may also do so via the chkconfig command (that is if the command is available).

In that case, this command should work:

chkconfig --level 35 go.py on

Check out THIS WEBSITE, more specifically the "Using chkconfig to Start Daemons at Each runlevel" and "Using sysv-rc-conf to Start Daemons at Each runlevel" sections.

link|improve this answer
feedback

cron has a special @reboot option that allows for this. Nice and simple.

A normal cron task might be:

* * * * * /path/to/app

A @reboot cron task might be:

@reboot /path/to/app
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.