On a related note, if you wanted to see the logs of your server starting in real-time, you can run a tail on your logs so you can watch them like in windows instead of having to go look at every separate log file.
To do that, you would just go to your logs directory and type:
or, from your server directory, you should be able to use:
Code:
/home/eqemu/server/logs/tail -f *.*
You can already have it filter out anything you want by using Greps. So, if you do this:
Code:
/home/eqemu/server/logs/tail -f *.* | grep ERR
It should show only errors in real-time. Pretty handy to have when you are troubleshooting in Linux IMO.