Simple script to install on Ubuntu 10.04 LTS
From NEOSYS Dev Wiki
Jump to navigationJump to search
#!/bin/bash #=== Building and Installing Exodus on Ubuntu 10.04.2 LTS x64 === #cut and paste everything into a bash script and run it as follows: #nano installexodus.sh #chmod +x installexodus.sh #sudo ./installexodus.sh #tested on: #Ubuntu 10.04.2 LTS #Linux lucid64 2.6.32-31-server #61-Ubuntu SMP Fri Apr 8 19:44:42 UTC 2011 x86_64 GNU/Linux uname -a cat /etc/issue #==== 1. Building and Installing Boost ==== #IT IS CRITICAL THAT BOOST-DEVEL IS *NOT* INSTALLED AND ALL OTHER BOOST DEV LIBS ARE UNINSTALLED ###yum -y remove boost-devel sudo apt-get -y remove libboost-dev ###yum -y install icu libicu libicu-devel sudo apt-get -y install libicu-dev ###yum -y install gcc-c++ sudo apt-get -y install g++ cd ~ rm -f boost_1_46_1.tar.gz wget http://sourceforge.net/projects/boost/files/boost/1.46.1/boost_1_46_1.tar.gz echo untarring boost, be patient, lots of files. tar xfz boost_1_46_1.tar.gz cd boost_1_46_1 #bjam should say "has_icu builds: yes" otherwise check your icu installation above ./bootstrap.sh sudo ./bjam --with-date_time --with-filesystem --with-regex --with-system --with-thread -a install #==== 2. Building and Installing Exodus ==== ###yum -y install subversion gcc-c++ postgresql-devel sudo apt-get -y install subversion g++ postgresql-server-dev* cd ~ svn co HTTPS://exodusdb.googlecode.com/svn/trunk/ exodus cd ~/exodus ./configure make sudo make install #==== 3. Configuring Postgresql ==== export POSTGRESVER=8.4 ###yum -y install postgresql-server sudo apt-get -y install postgresql-$POSTGRESVER ###/etc/init.d/postgresql start #/etc/init.d/postgresql-$POSTGRESVER start cat > /tmp/exoduspg.input << EOF #!/bin/bash psql -U postgres -d template1 << EOF2 \connect template1 CREATE OR REPLACE FUNCTION exodus_call(bytea, bytea, bytea, bytea, bytea, int4, int4) RETURNS bytea AS 'pgexodus', 'exodus_call' LANGUAGE C IMMUTABLE; CREATE OR REPLACE FUNCTION exodus_extract_bytea(bytea, int4, int4, int4) RETURNS bytea AS 'pgexodus', 'exodus_extract_bytea' LANGUAGE C IMMUTABLE; CREATE OR REPLACE FUNCTION exodus_extract_text(bytea, int4, int4, int4) RETURNS text AS 'pgexodus', 'exodus_extract_text' LANGUAGE C IMMUTABLE; CREATE OR REPLACE FUNCTION exodus_extract_sort(bytea, int4, int4, int4) RETURNS text AS 'pgexodus', 'exodus_extract_sort' LANGUAGE C IMMUTABLE; -- Remaining functions are STRICT therefore never get called with NULLS -- also return NULL if passed zero length strings CREATE OR REPLACE FUNCTION exodus_extract_text2(bytea, int4, int4, int4) RETURNS text AS 'pgexodus', 'exodus_extract_text2' LANGUAGE C IMMUTABLE STRICT; CREATE OR REPLACE FUNCTION exodus_extract_date(bytea, int4, int4, int4) RETURNS date AS 'pgexodus', 'exodus_extract_date' LANGUAGE C IMMUTABLE STRICT; CREATE OR REPLACE FUNCTION exodus_extract_time(bytea, int4, int4, int4) RETURNS time AS 'pgexodus', 'exodus_extract_time' LANGUAGE C IMMUTABLE STRICT; CREATE OR REPLACE FUNCTION exodus_extract_datetime(bytea, int4, int4, int4) RETURNS timestamp AS 'pgexodus', 'exodus_extract_datetime' LANGUAGE C IMMUTABLE STRICT; CREATE ROLE exodus LOGIN PASSWORD 'somesillysecret' CREATEDB CREATEROLE; CREATE DATABASE exodus WITH ENCODING='UTF8' OWNER=exodus; \df exodus* \q EOF2 EOF chmod a+xr /tmp/exoduspg.input sudo su postgres -c "/tmp/exoduspg.input" rm /tmp/exoduspg.input #/etc/init.d/postgresql reload sudo /etc/init.d/postgresql-$POSTGRESVER reload #==== 4. Configuring Exodus ==== echo host=127.0.0.1 \ port=5432 \ dbname=exodus \ user=exodus \ password=somesillysecret \ > ~/.exodus #==== 5. Testing Exodus ==== cd ~ testsort #==== 6. Programming with Exodus ==== #you must make some change to hello or actually save it, not just quit #edic hello #hello #compile hello