Mercurial > hg > aimc
annotate trunk/scripts/aws_prepare.sh @ 300:5b8aa04af2ca
-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 | d0c7bc9b1e21 |
rev | line source |
---|---|
tomwalters@300 | 1 #!/bin/bash |
tomwalters@300 | 2 # Run ami-2fc2e95b (32 bit) or ami-05c2e971 (64 bit) in eu-west zone |
tomwalters@300 | 3 sudo apt-get update |
tomwalters@300 | 4 sudo apt-get install subversion scons pkg-config libsndfile-dev build-essential |
tomwalters@300 | 5 sudo mkdir /media/sounds-database |
tomwalters@300 | 6 sudo mount /dev/sdf1 /media/sounds-database/ |
tomwalters@300 | 7 svn checkout http://aimc.googlecode.com/svn/trunk/ aimc-read-only |
tomwalters@300 | 8 cd aimc-read-only |
tomwalters@300 | 9 scons |
tomwalters@300 | 10 cd .. |