Versions Compared

Key

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

...

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

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

The following script will execute Odysseus with respect to updates and restarts of Odysseus:

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 -noExit -debug -nl en -data @noDefault
	if [ "$?" != "23" ]; then

 

...

		break
	fi 
done