Created attachment 664 [details] anolis8.6 arm镜像安装失败 Description of problem: 使用https://mirrors.openanolis.cn/anolis/8.6/isos/QU1/aarch64/AnolisOS-8.6-QU1-aarch64-dvd.iso镜像进行安装测试,在加载界出现错误,无法进行安装,报错信息见附件 Steps to Reproduce: 1.wget -c AnolisOS-8.6-QU1-aarch64-dvd.iso 2.修改anolis8.6.xml文件以及创建anolis8.6.qcow2磁盘 3.执行 virsh create anolis8.6.xml Actual results: 在镜像加载界面报错,无法进行安装 Expected results: 正常安装,并能到达登录界面 Additional info:
@刘亚青 把xml也放一下
(In reply to chuyang_94 from comment #1) > @刘亚青 把xml也放一下 xml文件内容如下: <domain type="kvm"> <name>VMName</name> <memory>16777216</memory> <vcpu placement="static" current="4">4</vcpu> <cpu mode='host-passthrough'> <topology sockets='1' cores='4' threads='1'/> </cpu> <os firmware='efi'> <!-- UEFI安装 --> <type arch="aarch64" machine="virt-rhel7.6.0">hvm</type> <loader readonly='yes' secure='no' type='pflash'>/usr/share/AAVMF/AAVMF_CODE.fd</loader> <nvram template='/usr/share/AAVMF/AAVMF_VARS.fd'>/var/lib/libvirt/qemu/nvram/an8u2-gui_VARS.fd</nvram> <boot dev='hd'/> <boot dev='cdrom'/> </os> <features> <acpi/> <pae/> </features> <clock offset="localtime" timezone="Asia/Shanghai"> <timer name="rtc" tickpolicy="catchup" track="guest"/> <timer name="pit" tickpolicy="delay"/> <timer name="hpet" present="no"/> </clock> <on_poweroff>destroy</on_poweroff> <on_reboot>restart</on_reboot> <on_crash>restart</on_crash> <devices> <emulator>/usr/bin/qemu-kvm</emulator> <disk type='file' device='cdrom'> <driver name='qemu' type='raw'/> <source file='/ImagePath/ImageName.iso'/> <target dev="vdc" bus="virtio"/> </disk> <disk type="file" device="disk"> <driver name="qemu" type="qcow2" cache="none" dataplane="on" io="native"/> <source file="/DiskPath/DiskName.qcow2"/> <target dev="vda" bus="virtio"/> </disk> <interface type='network'> <source network='default'/> <model type='virtio'/> </interface> <console type="pty"> <target type="serial"/> </console> <console type="pty"> <target type="virtio"/> </console> <video> <model type='cirrus' vram='9216' heads='1'/> <alias name='video0'/> </video> <input type='tablet' bus='usb'/> <input type='mouse' bus='ps2'/> <graphics type='vnc' port='-1' autoport='yes'> <listen type='address' address='0.0.0.0'/> </graphics> <memballoon model="none"/> </devices> </domain>