You are not logged in.
Pages: 1
Hi,
need help with running app in background. I know that I should edit rc.local, but what tu put in there?
In my home directory I have dir. head, and I want to run ./gate 6669.
So do I have to write there:
cd head
./gate 6669
???
THX
Respect is everything 8)
Offline
rc.local isn't relative to your $HOME, it's run as root, not as a user. If you want something to run in the background from boot to shutdown, here's what you'd put into rc.local:
/home/balrog/head/gate 6669 &
Offline
Works, thanks
Respect is everything 8)
Offline
Pages: 1