Install/Test/Uninstall - Ubuntu/Debian: Difference between revisions
From NEOSYS Dev Wiki
Jump to navigationJump to search
Line 28: | Line 28: | ||
</pre> | </pre> | ||
=== | === Database, Python, Perl === | ||
testsort | |||
testsort | listfiles | ||
listfiles | |||
#python one liner to write a multivalue database record (after creating xyzfile) | #python one liner to write a multivalue database record (after creating xyzfile) | ||
createfile xyzfile | createfile xyzfile | ||
python -c 'from exodus import *;print var("abc123").write("xyzfile","key123")' | python -c 'from exodus import *;print var("abc123").write("xyzfile","key123")' | ||
#perl one liner to read back the record | #perl one liner to read back the record | ||
#the syntax is long winded because exodus isnt properly implemented in perl yet | #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"); \ | 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 | list xyzfile | ||
deletefile xyzfile | deletefile xyzfile | ||
=== Python === | |||
/usr/share | find /usr/share|grep exodus | ||
/usr/share/doc/packages/libexodus-python/examples/ | /usr/share/doc/packages/libexodus-python/examples/test.py | ||
/usr/share/doc/packages/libexodus- | /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 === | === PHP === |
Revision as of 20:21, 10 July 2011
Add Repository
#Pick ONE Distro. export DISTRO=Debian_6.0 export DISTRO=xUbuntu_10.04 export DISTRO=xUbuntu_11.04 sudo su -c "echo 'deb http://download.opensuse.org/repositories/home:/neosys:/exodus/$DISTRO ./' > /etc/apt/sources.list.d/exodus.list" sudo apt-get update sudo apt-cache search exodus
Install
#installs exodus-cli, libexodus-perl, libexodus-python, libpgexodus and postgresql sudo apt-get update sudo apt-get install exodus #additional options sudo apt-get install libexodus-php \ libexodus-java \ libexodus-csharp \ libexodus-c++
Database, Python, Perl
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 yum install exodus-php php5-cli find /usr/share|grep exodus php /usr/share/doc/libexodus-php/examples/test.php
Java
sudo apt-get install libexodus-java find /usr/share|grep exodus sudo apt-get install default-jdk #for javac compiler cd ~ cp /usr/share/doc/libexodus-java/examples/* . ./testjava.sh
/usr/lib64/libjexodus.so ???
C#
sudo apt-get install libexodus-csharp find /usr/share|grep exodus sudo apt-get install mono-gmcs #for compiler cd ~ cp /usr/share/doc/libexodus-csharp/examples/* . ./testc#.sh
Upgrade
sudo apt-get update sudo apt-get upgrade
Uninstall
sudo apt-get autoremove exodus.*
Removing Repository
sudo rm /etc/apt/sources.list.d/exodus.list sudo apt-get update