November 2010
1 post
Ubuntu boot time scripts with etc/init.d
I wanted to collect some of my learnings on how ubuntu/debian manages scripts at boot time.
First, /etc/rcRUN-LEVEL.d/NNname is a series of directories that are symlinked to the /etc/init.d/name actual boot script.
So, if you want a service or program to run at boot time first create the script at /etc/init.d/servicename and chmod it to be executable. You can find an example at ...