This is probably a type of “is it plugged in?” question, but after getting a default Rackspace image of Ubuntu 11.04 up. Running command (as root)
apt-get install rake
Fails with error
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package rake
I’m missing something simple I’m sure.
It appears that
rakepackage is not in the 11.04 sources, but it is in 10.10 sources.To get
apt-get install raketo work on 11.04:Add the following lines to
/etc/apt/sources.listdeb http://archive.ubuntu.com/ubuntu/ maverick main restricted universedeb-src http://archive.ubuntu.com/ubuntu/ maverick main restricted universeUpdate package listing
apt-get updateNow
rakeshould be available:apt-get install rake