VM의 부팅 장치를 변경하려고합니다. VM의 XML 파일 in으로 이동 /etc/libvirt/qemu
하여 설정 <boot dev='cdrom' />
합니다. 그래도 cdrom 대신 하드 드라이브에서 부팅을 시도합니다.
CD-ROM 가상 장치에 ISO 이미지가로드되어 있음을 알고 있습니다.
이 작업을 올바르게 수행하고 있지 않습니까? VM을 완전히 종료하고 다시 시작하여 아무 소용이 없었습니다. 어쨌든 설정을 다시로드해야합니까?
편집하다:
@Selivanov의 요청에 의해 :
$ libvirtd --version
libvirtd (libvirt) 0.8.7
그리고 XML 파일 :
<domain type='kvm'>
<name>nimmy.example.com</name>
<uuid>(SNIP)</uuid>
<memory>524288</memory>
<currentMemory>524288</currentMemory>
<vcpu>1</vcpu>
<os>
<type arch='x86_64' machine='rhel6.1.0'>hvm</type>
<boot dev='cdrom'/>
</os>
<features>
<acpi/>
<apic/>
<pae/>
</features>
<clock offset='utc'/>
<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='raw' cache='none'/>
<source file='/var/lib/libvirt/images/nimmy.img'/>
<target dev='hda' bus='ide'/>
<address type='drive' controller='0' bus='0' unit='0'/>
</disk>
<disk type='file' device='cdrom'>
<driver name='qemu' type='raw'/>
<source file='/home/nimmy/CentOS-6.0-x86_64-netinstall.iso'/>
<target dev='hdc' bus='ide'/>
<readonly/>
<address type='drive' controller='0' bus='1' unit='0'/>
</disk>
<controller type='ide' index='0'>
<address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/>
</controller>
<interface type='network'>
<mac address='(SNIP)'/>
<source network='default'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/>
</interface>
<serial type='pty'>
<target port='0'/>
</serial>
<console type='pty'>
<target type='serial' port='0'/>
</console>
<input type='mouse' bus='ps2'/>
<graphics type='vnc' port='-1' autoport='yes'/>
<sound model='ac97'>
<address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/>
</sound>
<video>
<model type='cirrus' vram='9216' heads='1'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/>
</video>
<memballoon model='virtio'>
<address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0'/>
</memballoon>
</devices>
</domain>
virt-manager
설정을 다시로드 하기 위해 닫아야 했습니다. 이것이 일반적인 경우입니까? 설정을 다시로드하는 방법이 있습니까? 또한 설정이 왜 수행virt-manager
되지 않는지 혼란 스럽습니다 .