Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.25 KB | None | 0 0
  1. [root@virtual02 ~]# virsh dumpxml jacktest
  2. <domain type='kvm' id='17'>
  3.   <name>jacktest</name>
  4.   <uuid>1ccd6701-9cfb-2ddd-2594-b1abec56589f</uuid>
  5.   <memory>524288</memory>
  6.   <currentMemory>524288</currentMemory>
  7.   <vcpu>2</vcpu>
  8.   <os>
  9.     <type arch='x86_64' machine='rhel5.4.0'>hvm</type>
  10.     <boot dev='hd'/>
  11.   </os>
  12.   <features>
  13.     <acpi/>
  14.     <apic/>
  15.     <pae/>
  16.   </features>
  17.   <clock offset='utc'/>
  18.   <on_poweroff>destroy</on_poweroff>
  19.   <on_reboot>restart</on_reboot>
  20.   <on_crash>restart</on_crash>
  21.   <devices>
  22.     <emulator>/usr/libexec/qemu-kvm</emulator>
  23.     <disk type='file' device='disk'>
  24.       <driver name='qemu' type='raw'/>
  25.       <source file='/var/lib/libvirt/images/jacktest.img'/>
  26.       <target dev='hda' bus='ide'/>
  27.     </disk>
  28.     <interface type='network'>
  29.       <mac address='54:52:00:0a:c9:a2'/>
  30.       <source network='tubes'/>
  31.       <target dev='vnet1'/>
  32.     </interface>
  33.     <serial type='pty'>
  34.       <source path='/dev/pts/9'/>
  35.       <target port='0'/>
  36.     </serial>
  37.     <console type='pty' tty='/dev/pts/9'>
  38.       <source path='/dev/pts/9'/>
  39.       <target port='0'/>
  40.     </console>
  41.     <input type='mouse' bus='ps2'/>
  42.     <graphics type='vnc' port='5901' autoport='yes' keymap='en-us'/>
  43.   </devices>
  44. </domain>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement