Mercurial > hg > aimc
annotate experiments/scripts/setup_aws_instance.sh @ 119:9d880fb93c39
- Well, most of the graphics stuff at least compiles now. Next step is getting it running.
M Modules/Output/Graphics/GraphicsView.h
M Modules/Output/Graphics/Devices/GraphicsOutputDeviceMovieDirect.cc
M Modules/Output/Graphics/Devices/GraphicsOutputDeviceMovieDirect.h
M Modules/Output/Graphics/Devices/GraphicsOutputDeviceCairo.cc
M Modules/Output/Graphics/Devices/GraphicsOutputDeviceCairo.h
M Modules/Output/Graphics/Devices/GraphicsOutputDeviceMovie.cc
M Modules/Output/Graphics/Devices/GraphicsOutputDeviceMovie.h
M Modules/Output/Graphics/Scale/ScaleLog.h
M Modules/Output/Graphics/Scale/ScaleERB.h
M Modules/Output/Graphics/Scale/ScaleLinear.h
M Modules/Output/Graphics/Scale/ScaleLogScaled.h
M Modules/Output/Graphics/Scale/Scale.cc
M Modules/Output/Graphics/Scale/Scale.h
M Support/Common.h
author | tom@acousticscale.org |
---|---|
date | Sat, 16 Oct 2010 23:05:26 +0000 |
parents | ae195c41c7bd |
children | 9af3dea75007 |
rev | line source |
---|---|
tomwalters@54 | 1 #!/bin/bash |
tomwalters@54 | 2 # Run ami-2fc2e95b (32 bit) or ami-05c2e971 (64 bit) in eu-west zone |
tomwalters@92 | 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 |
tomwalters@98 | 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 |
tomwalters@100 | 5 su ubuntu |
tomwalters@54 | 6 sudo apt-get -y update |
tomwalters@74 | 7 sudo apt-get -y install bc subversion scons pkg-config libsndfile1-dev build-essential libboost-dev python sox |
tomwalters@71 | 8 |
tomwalters@71 | 9 # For 64-bit systems, uncomment this line: |
tomwalters@97 | 10 sudo apt-get -y install libc6-dev-i386 |
tomwalters@57 | 11 |
tomwalters@73 | 12 sudo mkdir -p /mnt/aimc |
tomwalters@100 | 13 sudo chown `whoami` /mnt/aimc |
tomwalters@92 | 14 sudo mkdir -p /mnt/log |
tomwalters@100 | 15 sudo chown `whoami` /mnt/log |
tomwalters@57 | 16 cd /mnt/aimc |
tomwalters@57 | 17 svn checkout http://aimc.googlecode.com/svn/trunk/ aimc-read-only |
tomwalters@68 | 18 cd aimc-read-only/experiments/scripts/ |
tomwalters@97 | 19 ./master.sh &> /mnt/log/log.log |