Standalone Hypergrid Open Simulator BRIGADOON-0008
Configuration of Little-Sense OPen Simulator instance
Loading...
Searching...
No Matches
start_ls_opensim.sh
Go to the documentation of this file.
1#!/bin/bash
2# Name: start_ls_opensim.sh
3# Author: River Drifter
4# Email: river-drifter@aussiebroadband.com.au
5# Version: 1.00
6# Date: 14-November-2025
7# Description: A Script to start the "Little Sense" Open Simulator instance
8#
9# Notes: This script can be run from the console, but the primary objective
10# objective is to be run via a program such as "screen" so that it
11# runs as a detached process that can be recaptured for input when
12# when required. A typical use of this script with screen would be as
13# follows:
14#
15# screen -S <program's directory>/start_ls_opensim.sh
16#
17
18# Change to the Open Simulator execute directory
19cd /opt/ls_opensim/bin
20
21# Start the Simulator running
22sudo dotnet OpenSim.dll
23
24