zoukankan      html  css  js  c++  java
  • What is STUBDOM ?

    What is STUBDOM ? 
    Stubdoms are lightweight 'service' or 'driver' domains. The initial purpose was to offload qemu (for hvm guests) out of dom0. So with stubdoms you can run hvm guest qemu in a separate stubdom, which boosts performance and makes it more secure. stubdoms can also run for example pv-grub for pv guests, making it more secure compared to pygrub, which always runs in dom0. 
    Configure Example
    /etc/xen/OVM_EL5U1_X86_HVM_4GB:
    name = 'OVM_EL5U1_X86_HVM_4GB'
    uuid = 'de0edfdc-c6f1-4d2b-a2a3-88c035208c79'
    builder = 'hvm'
    device_model = '/usr/lib/xen/bin/stubdom-dm'
    kernel = '/usr/lib/xen/boot/hvmloader'
    memory = '256'
    vif = [ 'mac=00:16:3e:6b:66:d7,bridge=xenbr0', ]
    disk = [ 'file:/share/vm/OVM_EL5U1_X86_HVM_4GB/system.img,hda,w!', ]
    acpi = 1
    apic = 1
    pae = 1
    vcpus = 1
    sdl = 0
    vnc = 1
    vnclisten = '192.168.1.199'
    on_crash = 'restart'
    on_reboot = 'restart'
    Note: you can comment the disk statement here; but if you want use pvhvm drivers, you should leave it uncommented.
    /etc/xen/OVM_EL5U1_X86_HVM_4GB-dm:
    disk = [ 'file:/share/vm/OVM_EL5U1_X86_HVM_4GB/system.img,hda,w!', ]
    kernel = "/usr/lib/xen/boot/ioemu-stubdom.gz"
    #vfb = [ 'type=sdl' ]
    #vfb = [ 'type=vnc' ]
    vif = [ 'ip=192.168.1.199', 'mac=00:16:3e:6b:66:d7,bridge=xenbr0', ]
  • 相关阅读:
    Linux学习之查看是否安装软件
    Linux学习之nfs实例
    Linux学习之nfs安装配置
    Linux 学习之防火墙配置
    Linux学习之系统时间同步
    Linux学习之守护进程详解
    Linux学习之Center os网络配置
    Linux学习之挂载操作
    Linux学习之挂载
    Linux学习之开机启动
  • 原文地址:https://www.cnblogs.com/feisky/p/2394286.html
Copyright © 2011-2022 走看看