# rpm -qf /usr/share/perl5/PVE/QemuServer.pm pve-qemu-server-8.1.1-alt1.x86_64 Ошибка в PVE: TASK ERROR: Undefined subroutine &PVE::QemuServer::is_native called at /usr/share/perl5/PVE/QemuServer.pm line 4080. commit 961ca28b35695eefd890c4f259df1b6a86d1140f Author: Alexey Shabalin <shaba@altlinux.org> Date: Wed Mar 9 17:56:18 2022 +0300 apply qemu-server-aarch64.patch ... @@ -3274,7 +3274,7 @@ my $Arch2Qemu = { }; sub get_command_for_arch($) { my ($arch) = @_; - return '/usr/bin/kvm' if is_native($arch); +# return '/usr/bin/kvm' if is_native($arch); my $cmd = $Arch2Qemu->{$arch} or die "don't know how to emulate architecture '$arch'\n"; @@ -4008,7 +4008,9 @@ sub config_to_command { } } - if (!$kvm) { + if ($kvm && is_native($arch)) { + push @$machineFlags, 'accel=kvm'; + } else { В общем коде имеется только is_native_arch
pve-qemu-server-8.1.1-alt2 -> sisyphus: Fri Apr 12 2024 Andrew A. Vasilyev <andy@altlinux> 8.1.1-alt2 - fix merge error with is_native_arch() (ALT #50005)