#!/bin/sh # # If you want to build your own copy of cloud-live, follow these simple steps: # # 1. Install Ubuntu 12.04, 64bit # 2. Install live-build # 3. Create a working directory - mkdir ~/Cloud-live ; cd ~/Cloud-live # 4. Branch configuration - bzr branch lp:cloud-live config # 5. [OPTIONAL] Add customizations # 6. Build - sudo lb build # 7. Burn or dd resulting binary-hybrid.iso image # # If you would like to get a copy of the official Ubuntu Cloud Live image, you can # get it this way: # # wget http://cdimage.ubuntu.com/ubuntu-cloud-live/releases/12.04/ubuntu-12.04-cloud-live-amd64.iso # # You can verify the content and signature by getting these files and using # them with the proper gpg or sha1sum command: # # -- GPG signature # wget http://cdimage.ubuntu.com/ubuntu-cloud-live/releases/11.10/SHA1SUMS.gpg # # -- SHA1 checksum # wget http://cdimage.ubuntu.com/ubuntu-cloud-live/releases/11.10/SHA1SUMS # # # Or, run this file as a script... # IMG="http://cdimage.ubuntu.com/ubuntu-cloud-live/releases/12.04/ubuntu-12.04-cloud-live-amd64.iso" GPG="http://cdimage.ubuntu.com/ubuntu-cloud-live/releases/12.04/SHA1SUMS.gpg" SHA1="http://cdimage.ubuntu.com/ubuntu-cloud-live/releases/12.04/SHA1SUMS" wget ${IMG} wget ${GPG} wget ${SHA1}