diff options
Diffstat (limited to 'README.txt')
-rw-r--r-- | README.txt | 48 |
1 files changed, 32 insertions, 16 deletions
@@ -10,30 +10,36 @@ C#, and can run under Mono or the Microsoft .NET runtimes. | |||
10 | This is considered an alpha release. Some stuff works, a lot doesn't. | 10 | This is considered an alpha release. Some stuff works, a lot doesn't. |
11 | If it breaks, you get to keep *both* pieces. | 11 | If it breaks, you get to keep *both* pieces. |
12 | 12 | ||
13 | == Installation on Windows == | 13 | == Compiling OpenSim == |
14 | 14 | ||
15 | Prereqs: | 15 | Please see BUILDING.txt if you downloaded a source distribution and |
16 | need to build OpenSim before running it. | ||
16 | 17 | ||
17 | * Load OpenSim.sln into Visual Studio .NET and build the solution. | 18 | == Running OpenSim on Windows == |
18 | * chdir bin | ||
19 | * OpenSim.exe | ||
20 | 19 | ||
21 | See configuring OpenSim | 20 | We recommend that you run OpenSim from a command prompt on Windows in order |
21 | to capture any errors, though you can also run it by double-clicking | ||
22 | bin/OpenSim.exe | ||
22 | 23 | ||
23 | == Installation on Linux == | 24 | To run OpenSim from a command prompt |
24 | 25 | ||
25 | Prereqs: | 26 | * cd to the bin/ directory where you unpacked OpenSim |
26 | * Mono >= 2.4.2 | 27 | * run OpenSim.exe |
27 | * Nant >= 0.86 beta 1 (if building with the .NET framework on Windows), 0.85 (if building with the mono framework) | 28 | |
28 | * sqlite3 or mysql 5.x (you'll need a backend database) | 29 | Now see the "Configuring OpenSim" section |
30 | |||
31 | == Running OpenSim on Linux == | ||
32 | |||
33 | You will need Mono >= 2.4.2 to run OpenSim. On some Linux distributions you | ||
34 | may need to install additional packages. See http://opensimulator.org/wiki/Dependencies | ||
35 | for more information. | ||
36 | |||
37 | To run OpenSim, from the unpacked distribution type: | ||
29 | 38 | ||
30 | From the distribution type: | ||
31 | * ./runprebuild.sh | ||
32 | * nant | ||
33 | * cd bin | 39 | * cd bin |
34 | * mono ./OpenSim.exe | 40 | * mono ./OpenSim.exe |
35 | 41 | ||
36 | See configuring OpenSim | 42 | Now see the "Configuring OpenSim" section |
37 | 43 | ||
38 | == Configuring OpenSim == | 44 | == Configuring OpenSim == |
39 | 45 | ||
@@ -53,11 +59,21 @@ Once you are presented with a prompt that looks like: | |||
53 | 59 | ||
54 | You have successfully started OpenSim. | 60 | You have successfully started OpenSim. |
55 | 61 | ||
62 | Before you can log in you will need to create a user account. You can do | ||
63 | this by running the "create user" command on the OpenSim console. This will | ||
64 | ask you a series of questions such as first name, last name and password. | ||
65 | |||
66 | Helpful resources: | ||
67 | * http://opensimulator.org/wiki/Configuration | ||
68 | * http://opensimulator.org/wiki/Configuring_Regions | ||
69 | * http://opensimulator.org/wiki/Mysql-config | ||
70 | |||
56 | == Connecting to your OpenSim == | 71 | == Connecting to your OpenSim == |
57 | 72 | ||
58 | By default your sim will be running on http://127.0.0.1:9000. To use | 73 | By default your sim will be running on http://127.0.0.1:9000. To use |
59 | your OpenSim add -loginuri http://127.0.0.1:9000 to your second life | 74 | your OpenSim add -loginuri http://127.0.0.1:9000 to your second life |
60 | client (running on the same machine as your OpenSim). | 75 | client (running on the same machine as your OpenSim). To login, use the |
76 | same avatar details that you gave to the "create user" console command. | ||
61 | 77 | ||
62 | == Bug reports == | 78 | == Bug reports == |
63 | 79 | ||