Difference between revisions of "UECBundlingImages"

From OnnoWiki
Jump to navigation Jump to search
Line 11: Line 11:
 
Disini akan di jelaskan proses untuk mendownload salah satu dari daily builds yang dibuat dan di publikasi secara automatis. Proses ini mirip untuk Official Released Images
 
Disini akan di jelaskan proses untuk mendownload salah satu dari daily builds yang dibuat dan di publikasi secara automatis. Proses ini mirip untuk Official Released Images
  
CATATAN:  
+
CATATAN: shell variable yang di set pada code di bawah sangat bermanfaat untuk script berikut atau digunakan saat menuliskan perintah.
Note: the shell variables that are set in the below code snippets are very useful for scripts or to reuse them when typing commands.
 
  
* Download the UEC image for the architecture you want. You can do it from your browser or from the command line:
+
* Download UEC Image untuk arsitektur komputer yang kita inginkan. Kita dapat melakukannya menggunakan browser atau command line:
  
 
  TIMESTAMP=$(date +%Y%m%d%H%M%S)
 
  TIMESTAMP=$(date +%Y%m%d%H%M%S)
Line 25: Line 24:
 
  uec-publish-tarball $UEC_IMG.tar.gz $RELEASE-$TIMESTAMP
 
  uec-publish-tarball $UEC_IMG.tar.gz $RELEASE-$TIMESTAMP
  
 +
* Selanjutnya,
 
* Now, your kernel and image will have been uploaded into Eucalyptus and should be ready to run. To confirm, run the following command:
 
* Now, your kernel and image will have been uploaded into Eucalyptus and should be ready to run. To confirm, run the following command:
  
Line 34: Line 34:
 
==Referensi==
 
==Referensi==
  
 +
* https://help.ubuntu.com/community/UEC/BundlingImages
 
* http://uec-images.ubuntu.com
 
* http://uec-images.ubuntu.com
  

Revision as of 07:25, 21 October 2010

Penggunaan UEC pada dasarnya adalah proses membuat dan mendaftarkan Image ke Cloud Controller.

Disini akan di jelaskan proses untuk Ubuntu 10.04 LTS.

Ada beberapa cara untuk memperoleh virtual Image.

  • Download Image dari Internet, di bundel dan di uploadke Cloud Controller.
  • Membuat custom Image menggunakan VMBuilder.
  • Menggunakan Image store untuk mendownload dan install Image.

Disini akan di jelaskan proses untuk mendownload salah satu dari daily builds yang dibuat dan di publikasi secara automatis. Proses ini mirip untuk Official Released Images

CATATAN: shell variable yang di set pada code di bawah sangat bermanfaat untuk script berikut atau digunakan saat menuliskan perintah.

  • Download UEC Image untuk arsitektur komputer yang kita inginkan. Kita dapat melakukannya menggunakan browser atau command line:
TIMESTAMP=$(date +%Y%m%d%H%M%S)
RELEASE=lucid
ARCH=amd64    # Or this might be i386
[ $ARCH = "amd64" ] && IARCH=x86_64 || IARCH=i386
UEC_IMG=$RELEASE-server-uec-$ARCH
URL=http://uec-images.ubuntu.com/$RELEASE/current/
[ ! -e $UEC_IMG.tar.gz ] &&  wget $URL/$UEC_IMG.tar.gz
uec-publish-tarball $UEC_IMG.tar.gz $RELEASE-$TIMESTAMP
  • Selanjutnya,
  • Now, your kernel and image will have been uploaded into Eucalyptus and should be ready to run. To confirm, run the following command:
euca-describe-images
EMI=$(euca-describe-images | grep emi- | head -n1 | awk '{print $2}')

You should see a registered kernel and image and they should be marked as 'available'.

Referensi

Pranala Menarik