add opensim.sh and opensim32.sh for linux, replacing old opensim-ode.sh

0.9.0-post-fixes
UbitUmarov 2017-06-11 18:12:25 +01:00
parent 08659811c7
commit 7941f8da23
3 changed files with 10 additions and 4 deletions

View File

@ -1,4 +0,0 @@
#!/bin/sh
echo "Starting OpenSimulator with ODE or ubOde. If you get an error saying limit: Operation not permitted. Then you will need to chmod 0600 /etc/limits"
ulimit -s 262144
mono OpenSim.exe

5
bin/opensim.sh Normal file
View File

@ -0,0 +1,5 @@
#!/bin/sh
ulimit -s 1048576
# next option may improve SGen gc (for opensim only) you may also need to increase nursery size on large regions
#export MONO_GC_PARAMS="minor=split,promotion-age=14"
mono --desktop OpenSim.exe

5
bin/opensim32.sh Normal file
View File

@ -0,0 +1,5 @@
#!/bin/sh
ulimit -s 1048576
# next option may improve SGen gc (for opensim only)
#export MONO_GC_PARAMS="minor=split,promotion-age=14"
mono --desktop OpenSim32.exe