Mercurial > hg > aimc
changeset 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 | 57e6c567461c |
children | 18300eab5c8a |
files | trunk/scripts/aws_prepare.sh |
diffstat | 1 files changed, 10 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/trunk/scripts/aws_prepare.sh Wed Feb 24 14:02:54 2010 +0000 @@ -0,0 +1,10 @@ +#!/bin/bash +# Run ami-2fc2e95b (32 bit) or ami-05c2e971 (64 bit) in eu-west zone +sudo apt-get update +sudo apt-get install subversion scons pkg-config libsndfile-dev build-essential +sudo mkdir /media/sounds-database +sudo mount /dev/sdf1 /media/sounds-database/ +svn checkout http://aimc.googlecode.com/svn/trunk/ aimc-read-only +cd aimc-read-only +scons +cd ..