Mercurial > hg > aimc
comparison experiments/scripts/setup_aws_instance.sh @ 165:f75123cf39ce
- Scripts for running recognition experiments using AIM-C and HTK to compare MFCCs against features generated with AIM-C
author | tomwalters |
---|---|
date | Wed, 04 Aug 2010 06:41:56 +0000 |
parents | 9af3dea75007 |
children | a718fb21013c |
comparison
equal
deleted
inserted
replaced
164:7e1fe07d13dc | 165:f75123cf39ce |
---|---|
1 #!/bin/bash | 1 #!/bin/bash |
2 # Run ami-2fc2e95b (32 bit) or ami-05c2e971 (64 bit) in eu-west zone | 2 # Run ami-2fc2e95b (32 bit) or ami-05c2e971 (64 bit) in eu-west zone |
3 # ec2-run-instances --user-data-file ec2_user_data.sh --key tom_eu_west --instance-type m1.small --instance-count 1 --region eu-west-1 --availability-zone eu-west-1b ami-2fc2e95b | |
4 # ec2-run-instances --user-data-file ec2_user_data.sh --key tom_eu_west --instance-type c1.xlarge --instance-count 1 --region eu-west-1 --availability-zone eu-west-1b ami-05c2e971 | |
5 su ubuntu | |
6 sudo apt-get -y update | 3 sudo apt-get -y update |
7 sudo apt-get -y install bc subversion scons pkg-config libsndfile1-dev build-essential libboost-dev python sox python-matplotlib | 4 sudo apt-get -y install subversion scons pkg-config libsndfile-dev build-essential libboost-dev libc6-dev-i386 python |
8 | |
9 # For 64-bit systems, uncomment this line: | |
10 sudo apt-get -y install libc6-dev-i386 | |
11 | |
12 sudo mkdir -p /mnt/aimc | |
13 sudo chown `whoami` /mnt/aimc | |
14 sudo mkdir -p /mnt/log | |
15 sudo chown `whoami` /mnt/log | |
16 cd /mnt/aimc | |
17 svn checkout http://aimc.googlecode.com/svn/trunk/ aimc-read-only | |
18 cd aimc-read-only/experiments/scripts/ | |
19 ./master.sh &> /mnt/log/log.log |