Eucalyptus can be installed on Ubuntu Jaunty using binary DEB packages.
Eucalyptus binary installation is broken up into several packages: the cloud controller (-cloud package), the cluster controller (-cc package), and the node controller (-nc package). To simplify installation, everything is bundled into a single "tarball" for convenience.
Download the appropriate tarball from http://open.eucalyptus.com/downloads
Untar the bundle in a temporary location and add the directory to your sources.list
tar zxvf eucalyptus-1.5.2-*.tar.gz
cd eucalyptus-1.5.2-*
sudo -s
echo deb file://${PWD} ./ >> /etc/apt/sources.list
apt-get update
NOTE: After installation feel free to remove the entry from sources.list
If you start with a standard Ubuntu Jaunty installation, you will satisfy all Eucalyptus prerequsites with the following steps:
ntpdate-debian -s apt-get install openntpd
sudo apt-get install bridge-utils sudo vi /etc/network/interfaces
Comment out any entry for your existing interfaces (eth0/eth1 etc) and add a bridge entry with your interfaces attached. For example, to have your bridge come up with all physical ethernet devices added to it, and have DHCP assign an address to the bridge:
auto br0
iface br0 inet dhcp
bridge_ports all
For a static configuration with just eth0 attached (substitute your actual network parameters):
auto br0
iface br0 inet static
address 192.168.12.20
netmask 255.255.255.0
network 192.168.12.0
broadcast 192.168.12.255
gateway 192.168.12.1
dns-nameservers 192.168.12.1
dns-search foobar foobar.com
bridge_ports eth0
And finally restart the network by either by restarting the network using '/etc/init.d/network restart' or by rebooting the machine.
On front end, where cloud controller and cluster controller will run, install the -cloud and -cc DEBs:
aptitude install eucalyptus-cc eucalyptus-cloud eucalyptus-common
On the compute nodes, install the node controller DEB:
aptitude install eucalyptus-nc eucalyptus-common