Changes between Version 7 and Version 8 of linux/kvm
- Timestamp:
- 1970/01/01 09:21:16 (55 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
linux/kvm
v7 v8 24 24 辺りに注意しておく。 25 25 {{{ 26 <domain type='kvm' id='3'>26 domain type='kvm' id='3'> 27 27 <name>UbuntuVM</name> 28 <uuid>0738f2c4-f03e-4901-9954-0f59480ba1f3</uuid>29 28 <memory>524288</memory> 30 29 <currentMemory>524288</currentMemory> 31 30 <vcpu>1</vcpu> 32 31 <os> 33 <type arch='x86_64' machine=' fedora-13'>hvm</type>32 <type arch='x86_64' machine='pc'>hvm</type> 34 33 <boot dev='hd'/> 35 34 <boot dev='cdrom'/> 36 35 </os> 37 <features> 38 <acpi/> 39 <apic/> 40 <pae/> 41 </features> 36 42 37 <clock offset='utc'/> 43 <on_poweroff>destroy</on_poweroff>44 <on_reboot>destroy</on_reboot>45 <on_crash>destroy</on_crash>46 38 <devices> 47 39 <emulator>/usr/libexec/qemu-kvm</emulator> 48 <disk type='file' device='disk'> 40 41 <!-- DISKの定義 --> 42 <disk type='file' device='disk'> 49 43 <driver name='qemu' type='raw'/> 50 44 <source file='/mnt/sda5/ubuntu.img'/> 51 45 <target dev='hda' bus='ide'/> 52 <alias name='ide0-0-0'/>53 <address type='drive' controller='0' bus='0' unit='0'/>54 46 </disk> 47 48 <!-- CDROMの定義 --> 55 49 <disk type='file' device='cdrom'> 56 50 <driver name='qemu'/> … … 58 52 <target dev='hdc' bus='ide'/> 59 53 <readonly/> 60 <alias name='ide0-1-0'/>61 <address type='drive' controller='0' bus='1' unit='0'/>62 54 </disk> 63 <controller type='ide' index='0'> 64 <alias name='ide0'/> 65 <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/> 66 </controller> 55 56 <!-- ネットワークインタフェースの定義 --> 67 57 <interface type='network'> 68 58 <mac address='52:54:00:1d:18:5e'/> 69 59 <source network='default'/> 70 <target dev='vnet2'/> 71 <alias name='net0'/> 72 <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/> 60 <target dev='vnet0'/> 73 61 </interface> 74 <serial type='pty'> 75 <source path='/dev/pts/4'/> 76 <target port='0'/> 77 <alias name='serial0'/> 78 </serial> 79 <console type='pty' tty='/dev/pts/4'> 80 <source path='/dev/pts/4'/> 81 <target port='0'/> 82 <alias name='serial0'/> 83 </console> 62 84 63 <input type='mouse' bus='ps2'/> 85 64 <graphics type='vnc' port='5902' autoport='yes' keymap='ja'/> 86 <sound model='es1370'>87 <alias name='sound0'/>88 <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0'/>89 </sound>90 <video>91 <model type='cirrus' vram='9216' heads='1'/>92 <alias name='video0'/>93 <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/>94 </video>95 65 </devices> 66 96 67 </domain> 97 68 }}}