我们有一个 KVM 虚拟机管理程序 ( L0
,AMD,内核:Linux level0kvmhypervisor 4.19.0-12-amd64 #1 SMP Debian 4.19.152-1 (2020-10-18) x86_64 GNU/Linux
),它运行一个虚拟机,我想将其用作嵌套的 VirtualBox 虚拟机管理程序 ( L1
)。所以我想做的是在 KVM 内部运行 VirtualBox。有关 KVM 虚拟机管理程序的一些详细信息 ( L0
):
# cat /proc/cpuinfo
processor : 0 ... 23
vendor_id : AuthenticAMD
cpu family : 23
model : 113
model name : AMD Ryzen 9 3900 12-Core Processor
stepping : 0
microcode : 0x8701021
cpu MHz : 2193.155
cache size : 512 KB
physical id : 0
siblings : 24
core id : 0
cpu cores : 12
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 16
wp : yes
flags : ... svm ...
bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass
bogomips : 6188.58
TLB size : 3072 4K pages
clflush size : 64
cache_alignment : 64
address sizes : 43 bits physical, 48 bits virtual
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]
# dpkg --list | egrep -- "(kvm|libvirt)" | sed 's/amd64.*//g'
ii libsys-virt-perl 5.0.0-1
ii libvirt-clients 5.0.0-4+deb10u1
ii libvirt-daemon 5.0.0-4+deb10u1
ii libvirt-daemon-system 5.0.0-4+deb10u1
ii libvirt-glib-1.0-0:
ii libvirt0:
ii python3-libvirt 5.0.0-1
ii qemu-kvm 1:3.1+dfsg-8+deb10u8
嵌套选项也已启用:
# cat /sys/module/kvm_amd/parameters/nested
1
在安装了 VirtualBox 的 KVM 虚拟机 (L1) 中:我尝试启动由 Vagrant 创建的 VM 并收到以下错误消息:
...
==> default: Booting VM...
There was an error while executing `VBoxManage`, a CLI used by Vagrant
for controlling VirtualBox. The command and stderr is shown below.
Command: ["startvm", "357a07b4-7d81-4336-9ea6-0dbf0ab49d18", "--type", "headless"]
Stderr: VBoxManage: error: AMD-V is not available (VERR_SVM_NO_SVM)
VBoxManage: error: Details: code NS_ERROR_FAILURE (0x80004005), component ConsoleWrap, interface IConsole
这些是 VirtualBox 虚拟机管理程序的 KVM XML CPU 设置L1
:
<vcpu placement='static'>1</vcpu>
<cpu mode='host-model' check='partial'>
<model fallback='allow'/>
</cpu>
我相信这里必须做些更改,但我不太确定是什么。我找不到有关该主题的任何资源,所以我在这里提问。如何让 VirtualBox 虚拟机管理程序 ( L1
) 在 KVM 虚拟机内运行以启动 VM?
任何帮助都将非常感激。
答案1
<cpu mode='host-passthrough'>
<feature policy='require' name='svm'/>
</cpu>
在虚拟机设置文件中将这些设置用于 AMD CPU。