README.txt 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. Welcome to OpenSim!
  2. == OVERVIEW ==
  3. OpenSim is a BSD Licensed Open Source project to develop a functioning
  4. virtual worlds server platform capable of supporting multiple clients
  5. and servers in a heterogeneous grid structure. OpenSim is written in
  6. C#, and can run under Mono or the Microsoft .NET runtimes.
  7. This is considered an alpha release. Some stuff works, a lot doesn't.
  8. If it breaks, you get to keep *both* pieces.
  9. == Installation on Windows ==
  10. Prereqs:
  11. * Load OpenSim.sln into Visual Studio .NET and build the solution.
  12. * chdir bin
  13. * OpenSim.exe
  14. See configuring OpenSim
  15. == Installation on Linux ==
  16. Prereqs:
  17. * Mono >= 2.4.2
  18. * Nant >= 0.86 beta 1 (if building with the .NET framework on Windows), 0.85 (if building with the mono framework)
  19. * sqlite3 or mysql 5.x (you'll need a backend database)
  20. From the distribution type:
  21. * ./runprebuild.sh
  22. * nant
  23. * cd bin
  24. * mono ./OpenSim.exe
  25. See configuring OpenSim
  26. == Configuring OpenSim ==
  27. When OpenSim starts for the first time, you will be prompted with a
  28. series of questions that look something like:
  29. [09-17 03:54:40] DEFAULT REGION CONFIG: Simulator Name [OpenSim Test]:
  30. At each of these you must provide you own value or just hit enter to
  31. take the default (in this case "OpenSim Test").
  32. YOUR SIM WILL NOT BE STARTED UNTIL YOU ANSWER ALL QUESTIONS
  33. Once you are presented with a prompt that looks like:
  34. Region# :
  35. You have successfully started OpenSim.
  36. == Connecting to your OpenSim ==
  37. By default your sim will be running on http://127.0.0.1:9000. To use
  38. your OpenSim add -loginuri http://127.0.0.1:9000 to your second life
  39. client (running on the same machine as your OpenSim).
  40. == Bug reports ==
  41. In the likely event of bugs biting you (err, your OpenSim) we
  42. encourage you to see whether the problem has already been reported on
  43. the OpenSim mantis system. You can find the OpenSim mantis system at
  44. http://opensimulator.org/mantis/main_page.php
  45. If your bug has already been reported, you might want to add to the
  46. bug description and supply additional information.
  47. If your bug has not been reported yet, file a bug report ("opening a
  48. mantis"). Useful information to include:
  49. * description of what went wrong
  50. * stack trace
  51. * OpenSim.log (attach as file)
  52. * OpenSim.ini (attach as file)
  53. * if running under mono: run OpenSim.exe with the "--debug" flag:
  54. mono --debug OpenSim.exe
  55. == More Information on OpenSim ==
  56. More extensive information on building, running, and configuring
  57. OpenSim, as well as how to report bugs, and participate in the OpenSim
  58. project can always be found at http://opensimulator.org.
  59. Thanks for trying OpenSim, we hope it is a pleasant experience.