Home

main nav

  • Home
    • About
  • DataStores
  • Images
  • People
  • Project Management
  • Media/Deliverables/Papers
  • Forums
  • Student Work
  • Video
Home DataStores OpenSim - MUVE in education datastore OpenSim - Technical Manual Installation Server
  • login

User login

  • Create new account
  • Request new password

DataStores

  • Educational Assumption and Contextualizations
  • Learning from World of Warcraft for teaching in Second Life
  • Lessons Learned
  • Openhabitat website
  • OpenSim - MUVE in education datastore
    • OpenSim - Educational Framework
    • OpenSim - Technical Manual
      • Installation
        • Server
          • On Platforms
          • With VM
        • Client
      • Configuration
      • Launching
      • Opensim drupal integration for standalone mode
      • Stable releases
  • Phase 1 Art and Design Pilot Design
  • Phase 1 Philosophy Pilot Design
  • Pre and Post Pilot Questionnaires
  • SecondLife - MUVE in education datastore

Images of project activities:

Uploads from cubistscarborough

Submitted by admin on Thu, 11/06/2008 - 02:36.
  • Login or register to post comments
  • Feed items
  • Link to site

The village

Submitted by admin on Tue, 11/04/2008 - 22:37.
  • cubist

cubistscarborough posted a photo:

The village

The advantage of Second Life is being able to change the learning environment to suit the learners. The first years have got into building little homes, so I've set them the task of creating a village. A quick bit of region texture tweaking and terraforming, and look of the land now suits the task.

  • Login or register to post comments
  • Feed: Photos from cubistscarborough
  • Original article

Team BA

Submitted by admin on Tue, 11/04/2008 - 11:07.
  • cubist

cubistscarborough posted a photo:

Team BA

I've merged team A and team B into a new team, team BA.
The task for the rest of this week is to build a village.

  • Login or register to post comments
  • Feed: Photos from cubistscarborough
  • Original article

Tree building day, 10am-ish

Submitted by admin on Tue, 10/28/2008 - 23:02.
  • cubist

cubistscarborough posted a photo:

Tree building day, 10am-ish

10am - 5pm. "Build one of the following type of trees:" task. All pilot students, plus a couple of level 3 students, worked on this project as an activity as part of the Big Draw event, which also took place real life in Leeds Met Library.

  • Login or register to post comments
  • Feed: Photos from cubistscarborough
  • Original article

Ideas tree

Submitted by admin on Tue, 10/28/2008 - 23:02.
  • cubist

cubistscarborough posted a photo:

Ideas tree

My 'Ideas tree'. Work in progress.

  • Login or register to post comments
  • Feed: Photos from cubistscarborough
  • Original article

Tree from Hell

Submitted by admin on Tue, 10/28/2008 - 23:02.
  • cubist

cubistscarborough posted a photo:

Tree from Hell

This student found some fire in her inventory.

  • Login or register to post comments
  • Feed: Photos from cubistscarborough
  • Original article

Manatee's Symbol tree

Submitted by admin on Tue, 10/28/2008 - 23:02.
  • cubist

cubistscarborough posted a photo:

Manatee's Symbol tree

Top level 3 student builds a 'Symbol tree'. The black pixel version led me to reminisce about my first computer, a 1K ZX81.

  • Login or register to post comments
  • Feed: Photos from cubistscarborough
  • Original article

Crash

Submitted by admin on Mon, 10/27/2008 - 22:38.
  • cubist

cubistscarborough posted a photo:

Crash

  • Login or register to post comments
  • Feed: Photos from cubistscarborough
  • Original article
more

On Platforms

Submitted by bulman on Fri, 03/14/2008 - 18:09.
  • opensim
  • opensim5.4 install installation

Installation instructions for standalone and grid using source for 3 platforms; Linux, Windows and Mac

Linux

Debian Etch

1.) As a user with sudo rights, install necessary components to run opensim.

sudo aptitude install screen subversion nant mono mono-gmcs libmono-microsoft8.0-cil libmono-system-runtime2.0-cil

NOTE: If you intend to run in Grid mode with a web user interface, also install apache2, php5, mysql and phpmyadmin

1a.) Check mono version, if not version 1.2.5.1, then follow step 1b. If it is version 1.2.5.1, then go to step 2

mono -V

1b.) Download and install the generic linux installer for mono 1.2.5.1 (accept/yes to all the prompts)

wget ftp://www.go-mono.com/archive/1.2.5.1/linux-installer/3/mono-1.2.5.1_3-i...
sudo chmod 755 mono-1.2.5.1_3-installer.bin
sudo ./mono-1.2.5.1_3-installer.bin
bash

2.) navigate to desired directory opensim will run from and run this command:

svn co http://opensimulator.org/svn/opensim/tags/0.5.4-release opensim

3.) Build opensim

cd opensim
sudo ./runprebuild.sh
sudo nant

 

Windows

XP

Note: For the easiest route, check for binaries.

Requirements:

These instructions require .NET Framework 2.0 & the latest mono.
Visual Studio or nant can be used to make the executable.

1.) Download a stable release and untar source to a local directory.

1a.) run runprebuild.bat from the top-level folder, this will create a nant and a sln(vs2005) file

1b.) run nant in the same directory, or open the sln file with vs2005

NOTE: If you intend to run in Grid mode with a web user interface, also install a lamp solution, such as XAMPP which will run: apache2, php5, mysql and phpmyadmin. If you have errors with libode.so when using ODE, you may have to build it from source, please refer to opensimulator.org

 

Mac (Intel)

10.4/10.5

Requirements:

XCode Developers Tools, X11 (if 10.4, it's installed on 10.5 by default)

Also install Mono 1.2.5 (from link), once installed edit the .profile via terminal and add this:

export PKG_CONFIG_PATH="/Library/Frameworks/Mono.framework/Versions/1.2.5/lib/pkgconfig/:${PKG_CONFIG_PATH}"

1.) Compile OpenSIM (change the location based on which stable release you wish to install)

svn co http://opensimulator.org/svn/opensim/tags/0.5.4-release opensim
cd opensim 
./runprebuild.sh
nant

2.) Download and Compile libopenjpeg-libsl-2.1.2.0.dylib and libsecondlife.dll and place them in opensim/bin

libopenjpeg-libsl-2.1.2.0.dylib

svn co http://opensimulator.org/svn/opensim-libs/libsl1550 opensim-libs
cd opensim-libs/openjpeg-libsl
make -f Makefile.osx
cp libopenjpeg-libsl-2.1.2.0.dylib ../../opensim/bin

libsecondlife.dll

cd .. (back into opensim-libs)
nant
cp libsecondlife.dll ../../opensim/bin 

NOTE: If you intend to run in Grid mode with a web user interface, also install apache2, php5, mysql and phpmyadmin, or use XAMPP to get these services running. If you have errors with libode.so when using ODE, you may have to build it from source, please refer to opensimulator.org

 

  • apache2 php5 mysql and phpmyadmin
‹ Serverupapache2 php5 mysql and phpmyadmin ›
  • Login or register to post comments

Image Tags:

cubist Postcard from Second Life. Partnerships Habitat logo habitat On Stage Illyria Rozen's drum-kit lipsync JISC Meeting in York HTML on a prim fun
more tags



data="http://apps.cooliris.com/embed/cooliris.swf" width="950" height="450">

Get Adobe Flash




RoopleTheme