---
title: virt-manager提示unsupported configuration的解决方法
description: "使用virt-manager时，会提示如下信息："
url: https://www.hikunpeng.com/document/detail/zh/kunpengcpfs/troubleshooting/trouble/kunpengkvm_09_0006.html
sourcePath: /source/zh/kunpengcpfs/troubleshooting/trouble/kunpengkvm_09_0006.html
indexId: 9dac06a4e1ea30de566eb7b2c9cf788edf7139a4581f83539b1d55314d0efe8070
---
# virt-manager提示unsupported configuration的解决方法

#### 问题现象描述

使用virt-manager时，会提示如下信息：

```
libvirtError: unsupported configuration: ACPI requires UEFI on this architecture
```


#### 关键过程、根本原因分析

aarch64 KVM只支持UEFI BIOS，编译源码时未安装EDK2，无法识别Firmware文件。


#### 结论、解决方案及效果

1. 安装EDK2。

  - CentOS 7.6操作系统

```
yum -y install AAVMF
```


  - CentOS 8.1或openEuler操作系统

```
yum -y install edk2-aarch64
```


2. 重启libvirtd服务。

```
systemctl restart libvirtd
```
