
Originally Posted by
MakaiKing0
Ok, is there a way to get rid of the notification? It's kind of preventing me from entering commands as it just keeps cycling, over and over.
Just to elaborate on Psytrac's answer..
Server start script..
Code:
./gamedbd gamesys.conf 2>&1 > /some/dir/logs/gamedbd.log &
The 2>&1 just means error output and standard output.
The second > redirects the output to a file but: overwrites the file.
You can replace that with >> which redirects the output also but: appends to the file.
The second & shoves the command in the background 
You could then use in a terminal
Code:
tail -f /some/dir/logs/gamedbd.log
to monitor the last few lines in real time...