我正在尝试使用以下命令使用 libvirt 创建虚拟机:
virsh create file
内容"file"
:
<domain type='qemu' id='3'>
<name>testvm</name>
<memory>100</memory>
<vcpu>1</vcpu>
<os>
<type arch='i686'>hvm</type>
</os>
<devices>
<disk type='file' device='disk'>
<source file='/libtmp/VM-linux.0.2.img'/>
<target dev='hdc'/>
</disk>
</devices>
<on_reboot>restart</on_reboot>
<on_poweroff>preserve</on_poweroff>
<on_crash>restart</on_crash>
</domain>
这是发生的错误。
error: Failed to create domain from file
error: internal error cannot load AppArmor profile 'libvirt-9cb01efc-ed3b-ff8e-4de5-7227d311dd15'
我能够在不加载图像文件的情况下创建 vm。
每次配置文件名称不断变化。我尝试停止它并创建虚拟机,但我得到了同样的错误。
任何指针都会非常有帮助。