aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/README.md
diff options
context:
space:
mode:
authorSignpostMarv2012-09-06 12:44:42 +0100
committerJustin Clark-Casey (justincc)2012-09-08 00:02:26 +0100
commit2ca93cb14416a320c97f2a42e3d29472ea717ead (patch)
treed7e3b728a73d7edf62768da830feca8d99fa410b /README.md
parentheader syntax (diff)
downloadopensim-SC_OLD-2ca93cb14416a320c97f2a42e3d29472ea717ead.zip
opensim-SC_OLD-2ca93cb14416a320c97f2a42e3d29472ea717ead.tar.gz
opensim-SC_OLD-2ca93cb14416a320c97f2a42e3d29472ea717ead.tar.bz2
opensim-SC_OLD-2ca93cb14416a320c97f2a42e3d29472ea717ead.tar.xz
renaming to markdown file
Diffstat (limited to 'README.md')
-rw-r--r--README.md115
1 files changed, 115 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..5b707da
--- /dev/null
+++ b/README.md
@@ -0,0 +1,115 @@
1Welcome to OpenSim!
2
3# Overview
4
5OpenSim is a BSD Licensed Open Source project to develop a functioning
6virtual worlds server platform capable of supporting multiple clients
7and servers in a heterogeneous grid structure. OpenSim is written in
8C#, and can run under Mono or the Microsoft .NET runtimes.
9
10This is considered an alpha release. Some stuff works, a lot doesn't.
11If it breaks, you get to keep *both* pieces.
12
13# Compiling OpenSim
14
15Please see BUILDING.txt if you downloaded a source distribution and
16need to build OpenSim before running it.
17
18# Running OpenSim on Windows
19
20We recommend that you run OpenSim from a command prompt on Windows in order
21to capture any errors.
22
23To run OpenSim from a command prompt
24
25 * cd to the bin/ directory where you unpacked OpenSim
26 * run OpenSim.exe
27
28Now see the "Configuring OpenSim" section
29
30# Running OpenSim on Linux
31
32You will need Mono >= 2.4.3 to run OpenSim. On some Linux distributions you
33may need to install additional packages. See http://opensimulator.org/wiki/Dependencies
34for more information.
35
36To run OpenSim, from the unpacked distribution type:
37
38 * cd bin
39 * mono OpenSim.exe
40
41Now see the "Configuring OpenSim" section
42
43# Configuring OpenSim
44
45When OpenSim starts for the first time, you will be prompted with a
46series of questions that look something like:
47
48[09-17 03:54:40] DEFAULT REGION CONFIG: Simulator Name [OpenSim Test]:
49
50For all the options except simulator name, you can safely hit enter to accept
51the default if you want to connect using a client on the same machine or over
52your local network.
53
54You will then be asked "Do you wish to join an existing estate?". If you're
55starting OpenSim for the first time then answer no (which is the default) and
56provide an estate name.
57
58Shortly afterwards, you will then be asked to enter an estate owner first name,
59last name, password and e-mail (which can be left blank). Do not forget these
60details, since initially only this account will be able to manage your region
61in-world. You can also use these details to perform your first login.
62
63Once you are presented with a prompt that looks like:
64
65 Region (My region name) #
66
67You have successfully started OpenSim.
68
69If you want to create another user account to login rather than the estate
70account, then type "create user" on the OpenSim console and follow the prompts.
71
72Helpful resources:
73 * http://opensimulator.org/wiki/Configuration
74 * http://opensimulator.org/wiki/Configuring_Regions
75
76# Connecting to your OpenSim
77
78By default your sim will be available for login on port 9000. You can login by
79adding -loginuri http://127.0.0.1:9000 to the command that starts Second Life
80(e.g. in the Target: box of the client icon properties on Windows). You can
81also login using the network IP address of the machine running OpenSim (e.g.
82http://192.168.1.2:9000)
83
84To login, use the avatar details that you gave for your estate ownership or the
85one you set up using the "create user" command.
86
87# Bug reports
88
89In the very likely event of bugs biting you (err, your OpenSim) we
90encourage you to see whether the problem has already been reported on
91the OpenSim mantis system. You can find the OpenSim mantis system at
92
93 http://opensimulator.org/mantis/main_page.php
94
95If your bug has already been reported, you might want to add to the
96bug description and supply additional information.
97
98If your bug has not been reported yet, file a bug report ("opening a
99mantis"). Useful information to include:
100 * description of what went wrong
101 * stack trace
102 * OpenSim.log (attach as file)
103 * OpenSim.ini (attach as file)
104 * if running under mono: run OpenSim.exe with the "--debug" flag:
105
106 mono --debug OpenSim.exe
107
108# More Information on OpenSim
109
110More extensive information on building, running, and configuring
111OpenSim, as well as how to report bugs, and participate in the OpenSim
112project can always be found at http://opensimulator.org.
113
114Thanks for trying OpenSim, we hope it is a pleasant experience.
115