annotate scripts/aws_prepare.sh @ 27:378d919209f2

-Added script to prepare an Amazon EC2 machine to run AIM-C
author tomwalters
date Wed, 24 Feb 2010 14:02:54 +0000
parents
children 5e888fbaaa80
rev   line source
tomwalters@27 1 #!/bin/bash
tomwalters@27 2 # Run ami-2fc2e95b (32 bit) or ami-05c2e971 (64 bit) in eu-west zone
tomwalters@27 3 sudo apt-get update
tomwalters@27 4 sudo apt-get install subversion scons pkg-config libsndfile-dev build-essential
tomwalters@27 5 sudo mkdir /media/sounds-database
tomwalters@27 6 sudo mount /dev/sdf1 /media/sounds-database/
tomwalters@27 7 svn checkout http://aimc.googlecode.com/svn/trunk/ aimc-read-only
tomwalters@27 8 cd aimc-read-only
tomwalters@27 9 scons
tomwalters@27 10 cd ..