shell How do I get a process to run in the background? Simple / Usable things first If you want a start script without much effort, you could use the upstart service. See the corresponding manual page and /etc/init/*.conf for examples. After creating such a process you can start your server by calling service my server start If you want more
shell Best way to make a shell script daemon? I wanted to run a shell script as a daemon, and I was exploring SO as usual, and one of the answers that I found interesting and that fits my use case was: (./install.sh &) & Ref: to the original question here.