Changes between Version 18 and Version 19 of Xen_DRBL


Ignore:
Timestamp:
Oct 30, 2009, 4:36:26 PM (15 years ago)
Author:
rock
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Xen_DRBL

    v18 v19  
    2323----
    2424= 【2.HVM DRBL Client】 =
     25 * 只需修改設定檔即可可以參考以下
     26{{{
     27#!sh
     28import os, re
     29arch = os.uname()[4]
     30if re.search('64', arch):
     31    arch_libdir = 'lib64'
     32else:       
     33    arch_libdir = 'lib'
     34# Base     
     35kernel='/usr/lib/xen/boot/hvmloader'
     36builder='hvm'                                                                             
     37memory='512'               
     38name='hvm01'                 
     39device_model='/usr/lib/xen/bin/qemu-dm'
     40boot='n'                   
     41vif=['type=ioemu,bridge=eth1,mac=00:00:aa:bb:44:ae']                                     
     42           
     43# Graphical
     44vnc=1       
     45sdl=0       
     46           
     47# console   
     48vncconsole=1
     49           
     50# other     
     51acpi = 1   
     52apic = 1   
     53serial='pty'
     54           
     55# mouse point
     56usbdevice='tablet'
     57           
     58# VNC       
     59vncviewer=1                 
     60vncpasswd=""             
     61vnclisten='0.0.0.0'
     62}}}
    2563[[Image(HVM DRBL Client_1.png,width=600)]]
    2664----