-
Notifications
You must be signed in to change notification settings - Fork 0
/
node.xml
42 lines (42 loc) · 1.61 KB
/
node.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<domain type='kvm'>
<name>node</name>
<memory unit='KB'>2097152</memory> <-- 当前内存使用量 --!>
<currentMemory unit='KB'>2097152</currentMemory> <-- 最大内存使用量 --! >
<vcpu placement='static'>2</vcpu> <-- cpu数量 --!>
<os> <-- 系统 --!>
<type arch='x86_64' machine='pc'>hvm</type> <--硬盘引导 --!>
<boot dev='hd'/>
<bootmenu enable='yes'/>
<bios useserial='yes'/>
</os>
<features> <--电源管理 --!>
<acpi/>
<apic/>
</features>
<cpu mode='host-passthrough'> <-- cpu指令集 --!>
</cpu>
<clock offset='localtime'/> <-- 时钟 --!>
<on_poweroff>destroy</on_poweroff> <-- 关机 --!>
<on_reboot>restart</on_reboot> <-- 重启 --!>
<on_crash>restart</on_crash> <-- 强制重启 --!>
<devices>
<emulator>/usr/libexec/qemu-kvm</emulator> <-- 硬件仿真程序 --!>
<disk type='file' device='disk'> <-- 磁盘 --!>
<driver name='qemu' type='qcow2'/>
<source file='/var/lib/libvirt/images/node.img'/>
<target dev='vda' bus='virtio'/>
</disk>
<interface type='bridge'> <-- 网卡 --!>
<source bridge='vbr'/> <-- 连接到的虚拟机网络 --!>
<model type='virtio'/>
</interface>
<channel type='unix'> <-- 系统控制虚拟机的程序 --!>
<target type='virtio' name='org.qemu.guest_agent.0'/>
</channel>
<serial type='pty'></serial>
<console type='pty'>
<target type='serial'/>
</console>
<memballoon model='virtio'></memballoon> <-- 内存驱动 --!>
</devices>
</domain>