RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Server start launcher

Phr3d13

Sorceror
this is the command i'm trying to use to start the server
Code:
mono /media/Storage2_80/sa-project-svn/RunUO.exe -debug >> /media/Storage2_80/sa-project-svn/console.log
but it won't save the output of the server to the log file, what am i doing wrong?
 

Phr3d13

Sorceror
ok, now i have this:
Code:
#!/bin/bash

mono /media/Storage2_80/sa-project-svn/RunUO.exe -debug > /media/Storage2_80/sa-project-svn/console.log 2>&1
tail /media/Storage2_80/sa-project-svn/console.log
but it leaves a terminal window open
 

tass23

Page
Code:
sh$ valgrind --tool=memcheck -v --leak-check=full \ > --log-file=log --smc-check=all --suppressions=mono.supp \ >  mono runuo.exe
 
Top