Versions Compared

Key

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

...

The Odysseus server component works on a Raspberry Pi. Simple  Simple install a recent raspian and execute the following to download and install first. After that, you should update/upgrade the system first (if possible):

Code Block
sudo apt-get update
sudo apt-get upgrade

 

The following script will download and install Odysseus as a server-component

Code Block
wget http://odysseus.offis.uni-oldenburg.de/download/products/server/lastBuild/odysseus.server.gtk.linux.x86.zip
unzip odysseus.server.gtk.linux.x86.zip

Alternatively, if multiple Odysseus-Instances should be connected (Peer-to-Peer-Network of RaspberryPi), you should download the Peer-Version of Odysseus:

Code Block
wget http://odysseus.offis.uni-oldenburg.de/download/products/serverpeer/lastBuild/odysseus.serverpeer.gtk.linux.x86.zip
unzip odysseus.serverpeer.gtk.linux.x86.zip

 

The following script will execute Odysseus (Server-Version) with respect to restarts due to possible future updates:

Code Block
#!/bin/bash
 
cd odysseus.server.gtk.linux.x86
 
while true; do
	java -Xmx500M -Xms500M -Declipse.p2.mirrors=false -jar plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar -console -debug -data @noDefault
	if [ "$?" != "23" ]; then
		break
	fi 
done

Attention: If you downloaded and installed the Peer-Version of Odysseus, you have to replace "server" with "peer" in the 3rd line.

 

For the standard Beagle board "unzip" and "java" must be installed:

...

Start same as above the raspberry.

Further devices testettested:

...