Possible Duplicate:
How to add an application to run as a service in Linux?

is there a script in /etc i should edit? What is recommended. Right now im running something in .profile but that's kind of not what i want.

link|improve this question
feedback

closed as exact duplicate by Arjan, BloodPhilia, random Sep 2 '10 at 17:59

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

One way is to add it to your /etc/rc.local on Ubuntu. Varies on other distros but should be similar.

find /etc -name \*local\* -print
link|improve this answer
Just in case: on Gentoo, /etc/conf.d/local.start to start a program and /etc/conf.d/local.stop to stop it (if necessary) – David Zaslavsky Sep 2 '10 at 17:26
feedback

/etc/rc.local

This site says: "This script file is run once, before all other scripts have run but before the logon prompt appears."

If its a gui app you want launched then its probably specific to your desktop enviroment. Gnome under ubuntu has a "startup applications" tool under system/preferences

link|improve this answer
feedback

I'd use cron. Most Linux machines will use Vixie cron, which has the meta time spec @reboot.

See http://linux.die.net/man/5/crontab and look for @reboot

Much easier than setting up stuff in /etc/, especially if you want it to run as you and not root.

link|improve this answer
feedback

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