annotate trunk/scripts/aws_prepare.sh @ 706:f8e90b5d85fd tip

Delete CARFAC code from this repository. It has been moved to https://github.com/google/carfac Please email me with your github username to get access. I've also created a new mailing list to discuss CARFAC development: https://groups.google.com/forum/#!forum/carfac-dev
author ronw@google.com
date Thu, 18 Jul 2013 20:56:51 +0000
parents e6f006238034
children
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@309 4 sudo apt-get -y install subversion scons pkg-config libsndfile-dev build-essential libboost-dev
tomwalters@300 5 sudo mkdir /media/sounds-database
tomwalters@310 6 sudo mkdir /media/results
tomwalters@300 7 sudo mount /dev/sdf1 /media/sounds-database/
tomwalters@310 8 sudo mount /dev/sdg1 /media/results/
tomwalters@310 9 #cd /media/sounds-database/htk/htk/
tomwalters@310 10 #sudo make install
tomwalters@303 11 su ubuntu
tomwalters@303 12 cd /mnt/
tomwalters@311 13 sudo mkdir work
tomwalters@381 14 sudo chown `whoami` work
tomwalters@311 15 cd work
tomwalters@300 16 svn checkout http://aimc.googlecode.com/svn/trunk/ aimc-read-only
tomwalters@300 17 cd aimc-read-only
tomwalters@300 18 scons
tomwalters@300 19 cd ..
tomwalters@302 20 mkdir experiments
tomwalters@302 21 cd experiments
tomwalters@310 22 cp ../aimc-read-only/scripts/gen_features.sh ./
tomwalters@310 23 chmod u+x gen_features.sh
tomwalters@311 24 screen ./gen_features.sh $SNR_VALUE
tomwalters@310 25 tar -cf snr$SNR_VALUE.tar snr$SNR_VALUE/
tomwalters@310 26 cp snr$SNR_VALUE.tar /media/results/snr/
tomwalters@303 27 #sudo shutdown -h now