Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
java -Xms1000M -Xmx1000M -XstartOnFirstThread -jar plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar --launcher.library plugins/org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.101.v20120109-1504 -console -nl en -data @noDefault -showsplash de.uniol.inf.is.odysseus.rcp.base -Dorg.eclipse.swt.internal.carbon.smallFonts -clean

 

...

C. Installation under Linux

You can install Odysseus either in your home directory (single user) or system wide (multi user).

Single User

To run Odysseus you need a Java runtime environment in version 7.

Code Block
languagebash
titleDebian
sudo aptitude install default-jre

Download and unzip the Odysseus package to your local bin folder

Code Block
languagebash
mkdir –p ~/bin
wget –c http://odysseus.offis.uni-oldenburg.de/download/studio/stable/serverandstudio/odysseus.serverandstudio.gtk.linux.x86_64.zip -O ~/bin/odysseus.zip
unzip odysseus.zip –d ~/bin


Add the Odysseus folder to your PATH variable

Code Block
languagebash
export PATH=~/bin/odysseus:$PATH

Multi User

To create an installable package for your system, download the attached package template and extract it. Inside the package, call the build shell script. The script downloads the current Odysseus studio and creates necessary files to bundle it as a Debian package.

Code Block
languagebash
sh build

 After the build, the bundle can be installed using the package manager.

Code Block
languagebash
dpkg -i odysseus-0.1.deb

D. Running Odysseus Server on Raspberry Pi, Beagleboard Black Rev C

The Odysseus server component works on a Raspberry Pi. Simple install a recent raspian and execute the following to download and install Odysseus:

...