diff options
author | UbitUmarov | 2017-06-11 18:12:25 +0100 |
---|---|---|
committer | UbitUmarov | 2017-06-11 18:12:25 +0100 |
commit | 7941f8da232dbfe55882bc0704684072a04c2375 (patch) | |
tree | b5c4122b712a1a8083858338baa8f2e6da675ab7 /bin | |
parent | put back opensim 32bit launcher, renamed as OpenSim32.exe. This allows opensi... (diff) | |
download | opensim-SC_OLD-7941f8da232dbfe55882bc0704684072a04c2375.zip opensim-SC_OLD-7941f8da232dbfe55882bc0704684072a04c2375.tar.gz opensim-SC_OLD-7941f8da232dbfe55882bc0704684072a04c2375.tar.bz2 opensim-SC_OLD-7941f8da232dbfe55882bc0704684072a04c2375.tar.xz |
add opensim.sh and opensim32.sh for linux, replacing old opensim-ode.sh
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/opensim-ode.sh | 4 | ||||
-rw-r--r-- | bin/opensim.sh | 5 | ||||
-rw-r--r-- | bin/opensim32.sh | 5 |
3 files changed, 10 insertions, 4 deletions
diff --git a/bin/opensim-ode.sh b/bin/opensim-ode.sh deleted file mode 100755 index 7c61571..0000000 --- a/bin/opensim-ode.sh +++ /dev/null | |||
@@ -1,4 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | 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" | ||
3 | ulimit -s 262144 | ||
4 | mono OpenSim.exe | ||
diff --git a/bin/opensim.sh b/bin/opensim.sh new file mode 100644 index 0000000..508d925 --- /dev/null +++ b/bin/opensim.sh | |||
@@ -0,0 +1,5 @@ | |||
1 | #!/bin/sh | ||
2 | ulimit -s 1048576 | ||
3 | # next option may improve SGen gc (for opensim only) you may also need to increase nursery size on large regions | ||
4 | #export MONO_GC_PARAMS="minor=split,promotion-age=14" | ||
5 | mono --desktop OpenSim.exe | ||
diff --git a/bin/opensim32.sh b/bin/opensim32.sh new file mode 100644 index 0000000..0a0be32 --- /dev/null +++ b/bin/opensim32.sh | |||
@@ -0,0 +1,5 @@ | |||
1 | #!/bin/sh | ||
2 | ulimit -s 1048576 | ||
3 | # next option may improve SGen gc (for opensim only) | ||
4 | #export MONO_GC_PARAMS="minor=split,promotion-age=14" | ||
5 | mono --desktop OpenSim32.exe | ||