Simon Willison
Simon Willison

Reputation: 15882

Running apt-get on EC2 without coughing up for a bunch of bandwidth charges

I'm running Ubuntu on EC2 (using the alestic community AMI) and on startup my new instances use up a bunch of bandwidth running apt-get upgrade etc. Bandwidth between EC2 instances is free... anyone know if there's a mirror of the Ubuntu packages somewhere on EC2 I can use instead?

Upvotes: 11

Views: 2490

Answers (3)

Eric Hammond
Eric Hammond

Reputation: 22407

The Ubuntu Hardy, Intrepid, and (soon) Jaunty images published on Alestic.com already use Ubuntu archive mirrors internally on EC2.

Upvotes: 1

Neil Trodden
Neil Trodden

Reputation: 4728

I'm not sure if there is an official one but Right Scale have offered up a repository for other users of ec2:

http://www.rightscale.com/

ec2-hardy-sources.list

deb http://ec2-us-east-mirror.rightscale.com/ubuntu hardy main restricted universe multiverse 
deb http://ec2-us-east-mirror.rightscale.com/ubuntu hardy-updates main restricted universe multiverse 
deb http://security.ubuntu.com/ubuntu hardy-security main restricted universe multiverse 

ec2-intrepid-sources.list

deb http://ec2-us-east-mirror.rightscale.com/ubuntu intrepid main restricted universe multiverse 
deb http://ec2-us-east-mirror.rightscale.com/ubuntu intrepid-updates main restricted universe multiverse 
deb http://security.ubuntu.com/ubuntu intrepid-security main restricted universe multiverse **strong text**

Upvotes: 15

ismail
ismail

Reputation: 47572

Checkout http://ec2-us-east-mirror.rightscale.com/ubuntu/

Upvotes: 2

Related Questions