# HG changeset patch # User tomwalters # Date 1281527522 0 # Node ID aa4eea1a356800b910bc38ec0e1200f98751c3b2 # Parent 7d5bcedc229d1dd20b0382811b8410aa237166c9 - AWS (again!) diff -r 7d5bcedc229d -r aa4eea1a3568 experiments/scripts/HTK/install_htk.sh --- a/experiments/scripts/HTK/install_htk.sh Wed Aug 11 11:36:48 2010 +0000 +++ b/experiments/scripts/HTK/install_htk.sh Wed Aug 11 11:52:02 2010 +0000 @@ -2,7 +2,7 @@ set -e set -u if [ ! -e /mnt/experiments/htk/.htk_installed_success ]; then -sudo mkdir /mnt/experiments/htk +sudo mkdir -p /mnt/experiments/htk sudo chown ubuntu /mnt/experiments/htk cd /mnt/experiments/htk wget --user $HTK_USERNAME --password $HTK_PASSWORD http://htk.eng.cam.ac.uk/ftp/software/HTK-3.4.1.tar.gz diff -r 7d5bcedc229d -r aa4eea1a3568 experiments/scripts/cnbh-syllables/feature_generation/run_hcopy.sh --- a/experiments/scripts/cnbh-syllables/feature_generation/run_hcopy.sh Wed Aug 11 11:36:48 2010 +0000 +++ b/experiments/scripts/cnbh-syllables/feature_generation/run_hcopy.sh Wed Aug 11 11:52:02 2010 +0000 @@ -1,7 +1,7 @@ #!/bin/bash HCOPY=`which HCopy` -if [ $HCOPY -eq "" ]; then +if [ "$HCOPY" == "" ]; then echo "Please build HTK and make the binaries available in the path" fi diff -r 7d5bcedc229d -r aa4eea1a3568 experiments/scripts/cnbh-syllables/feature_generation/run_mfcc_vtln_conversion.sh --- a/experiments/scripts/cnbh-syllables/feature_generation/run_mfcc_vtln_conversion.sh Wed Aug 11 11:36:48 2010 +0000 +++ b/experiments/scripts/cnbh-syllables/feature_generation/run_mfcc_vtln_conversion.sh Wed Aug 11 11:52:02 2010 +0000 @@ -1,8 +1,8 @@ #!/bin/bash # - +HCOPY_CONFIG=hcopy.config HCOPY=`which HCopy` -if [ $HCOPY -eq "" ]; then +if [ "$HCOPY" == "" ]; then echo "Please build HTK and make the binaries available in the path" fi diff -r 7d5bcedc229d -r aa4eea1a3568 experiments/scripts/setup_aws_instance.sh --- a/experiments/scripts/setup_aws_instance.sh Wed Aug 11 11:36:48 2010 +0000 +++ b/experiments/scripts/setup_aws_instance.sh Wed Aug 11 11:52:02 2010 +0000 @@ -9,7 +9,10 @@ # ami-2fc2e95b sudo apt-get -y update -sudo apt-get -y install subversion scons pkg-config libsndfile1-dev build-essential libboost-dev libc6-dev-i386 python sox +sudo apt-get -y install subversion scons pkg-config libsndfile1-dev build-essential libboost-dev python sox + +# For 64-bit systems, uncomment this line: +# sudo apt-get -y install libc6-dev-i386 sudo mkdir /mnt/aimc sudo chown ubuntu /mnt/aimc