aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/README
diff options
context:
space:
mode:
authorDavid Walter Seikel2011-11-26 10:09:51 +1000
committerDavid Walter Seikel2011-11-26 10:09:51 +1000
commitebc84ad13f6d3f1911672b1a2d449d8cddf1ae2f (patch)
treeb25d5ce40da4019db2b7f1552eda19d91677365c /README
downloadIGnoble-ebc84ad13f6d3f1911672b1a2d449d8cddf1ae2f.zip
IGnoble-ebc84ad13f6d3f1911672b1a2d449d8cddf1ae2f.tar.gz
IGnoble-ebc84ad13f6d3f1911672b1a2d449d8cddf1ae2f.tar.bz2
IGnoble-ebc84ad13f6d3f1911672b1a2d449d8cddf1ae2f.tar.xz
First commit.
Diffstat (limited to 'README')
-rw-r--r--README62
1 files changed, 62 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..d0573db
--- /dev/null
+++ b/README
@@ -0,0 +1,62 @@
1Use this to create a sim that links into Infinite Grid from Linux.
2
3I'ts been tested on Umuntu 10.04, YMMV.
4
5Follow these steps.
6
7Go to -
8
9http://wiki.infinitegrid.org/index.php/Howto_Link_your_Opensim_region_to_Infinite_Grid
10
11and follow the directions to create an admin user account. You can skip
12that bit if you already have a suitable user with sudo access.
13
14Note that these scripts pretty much follow that above wiki description,
15with some exceptions. REST is used for console access, instead of
16screen. The configuration information per sim has been rearranged so
17that there is only ONE copy of the OpenSim installation.
18
19Next you need to figure out what password you want to use for OpenSims
20access to the database. We will call this "DatabasePassword". Run the
21following script -
22
23./install_opensim.sh DatabasePassword
24
25This will do most of the work fo you, except for creating sims. A
26separate script is here for sim creation, you can use it to create many
27sims. You will need -
28
29Your host name, or it could be your IP, we will use "sims.example.net".
30
31A name for your sim, we will use "My new sim". It should be unique on
32the grid.
33
34A location for your sim, we will use "1234,5678". You can use the
35Infinite Grid web based map to poke around and find a good location.
36Choose an empty spot.
37
38Optionally, you might need your IP address if you are creating more than
39one sim, we will use "1.2.3.4".
40
41Once you have all that information sorted out, run this script if ONLY
42hosting a single sim on this computer -
43
44./create_sim.sh "My new sim" "1234,5678" "sims.example.net"
45
46Or this if you plan on running more than one sim -
47
48./create_sim.sh "My new sim" "1234,5678" "sims.example.net" "1.2.3.4"
49
50No you can go to /opt/opensim/config/sim01 and run the following script
51to start it up -
52
53./start-sim-in-rest
54
55You will see the REST console. You can run the REST console again by
56running that command once more.
57
58Once it's all tested, you can use this to finish things off (back in
59this directory) -
60
61./go_live.sh
62