Install/Test/Uninstall - Suse 11.4

From NEOSYS Dev Wiki
Jump to navigationJump to search

Add Repository

export DISTRO=openSUSE_11.4

sudo su -c "echo -e '\
[exodus]\n\
name=exodus\n\
type=rpm-md\n\
baseurl=http://download.opensuse.org/repositories/home:/neosys:/exodus/$DISTRO/\n\
gpgcheck=1\n\
gpgkey=http://download.opensuse.org/repositories/home:/neosys:/exodus/$DISTRO/repodata/repomd.xml.key\n\
enabled=1\n\
'>/etc/zypp/repos.d/exodus.repo"

sudo zypper refresh
zypper search exodus

Install Database/Python/Perl

sudo zypper install exodus

Quick Test

testsort
listfiles
#python one liner to write a multivalue database record (after creating xyzfile)
createfile xyzfile
python -c 'from exodus import *;print var("abc123").write("xyzfile","key123")'
#perl one liner to read back the record
#the syntax is long winded because exodus isnt properly implemented in perl yet
perl -e 'use exo;$record=new exo::var(""); $filename=new exo::var("xyzfile"); $key=new exo::var("key123"); \
 print $record->read($filename,$key);print $record,"\n"'
list xyzfile
deletefile xyzfile

Python

find /usr/share|grep exodus
/usr/share/doc/packages/libexodus-python/examples/test.py
/usr/share/doc/packages/libexodus-python/examples/testsort.py

Perl

find /usr/share|grep exodus
/usr/share/doc/packages/libexodus-perl/examples/test.pl

PHP

sudo zypper install exodus-php
find /usr/share|grep exodus
php /usr/share/doc/packages/libexodus-php/examples/test.php

Java

sudo zypper install exodus-java
sudo zypper install java-1_6_0-openjdk-devel #for javac compiler
find /usr/share|grep exodus
cd ~
cp /usr/share/doc/packages/libexodus-java/examples/* .
./testjava.sh

C#

sudo zypper install exodus-csharp
find /usr/share|grep exodus
cd ~
cp /usr/share/doc/packages/libexodus-csharp/examples/* .
./testc#.sh

Uninstall

sudo zypper remove "*exodus*"

Removing Repository

sudo rm /etc/zypp/repos.d/exodus.repo
sudo zypper refresh