Somehow when we moved from 0.5 to 0.6, orbitedctl stopped working in many cases. For the time being, if you're deploying on linux there are a number of distribution-specific methods of daemonizing a process, including "upstart" and "start-stop-daemon". Of course, you could also use screen:
(after installing screen [ "sudo apt-get install screen" on ubuntu ]
$ screen
$ orbited
$ (ctr-a, d)
$ exit
# Then later, to reattach (to stop or restart orbited)
$ screen -x
-Michael Carter
Regards,
Donald Tse