annotate trunk/scripts/aws_prepare.sh @ 302:d0c7bc9b1e21

-Script updates for EC2
author tomwalters
date Wed, 24 Feb 2010 14:49:35 +0000
parents 5b8aa04af2ca
children 403763a98382
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@302 3 sudo apt-get -y update
tomwalters@302 4 sudo apt-get -y 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 ..
tomwalters@302 11 mkdir experiments
tomwalters@302 12 cd experiments
tomwalters@302 13 cp ../aimc-read-only/scripts/HTKAimfeat.sh ./
tomwalters@302 14 chmod u+x HTKAimfeat.sh
tomwalters@302 15 ./HTKAimfeat.sh _ec2_first_try
tomwalters@302 16