<devices>는 가상 게스트의 장치 속성을 정의합니다. 가상 게스트가 사용하는 저장 장치와 CD/DVD 드라이브, USB 컨트롤러가 정의되어 있습니다. 디스크 장치 <disk>의 <source file> 태그에는 가상 디스크 이미지의 경로가 지정되어 있습니다.
... <devices> <emulator>/usr/bin/qemu-system-x86_64</emulator> <disk type='file' device='disk'> <driver name='qemu' type='qcow2'/> <source file='/home/supreme/vm_disks/vstest.qcow2'/> <target dev='vda' bus='virtio'/> <address type='pci' domain='0x0000' bus='0x03' slot='0x00' function='0x0'/> </disk> <disk type='file' device='cdrom'> <driver name='qemu' type='raw'/> <target dev='sda' bus='sata'/> <readonly/> <address type='drive' controller='0' bus='0' target='0' unit='0'/> </disk> <controller type='usb' index='0' model='ich9-ehci1'> <address type='pci' domain='0x0000' bus='0x00' slot='0x1d' function='0x7'/> </controller> ...