
Code: Select all
init=/sbin/openrc-init
-systemd -logind -elogind seatdI am NaN! I am a man!
I installed androidx86 with qemu,is launched with ...leyvi wrote:Waydroid looks good, except I don't think it can run ARM apks. What other options are there?
Code: Select all
#!/bin/bash
qemu-system-x86_64 \
-name "MV - Android" \
-cpu host,kvm=off -machine type=pc,accel=kvm \
-smp 2 -m 6G \
-device virtio-vga-gl,blob=true,venus=true,hostmem=4G -display sdl,gl=on \
-audiodev pipewire,id=android0\
-device intel-hda -device hda-duplex,audiodev=android0 \
-device virtio-tablet-pci -device virtio-keyboard-pci -device virtio-net-pci \
-hda /mnt/gentoo-plus/android.img \
$@
... looks odd. KVM off and on?papu wrote:Code: Select all
-cpu host,kvm=off -machine type=pc,accel=kvm
Code: Select all
init=/sbin/openrc-init
-systemd -logind -elogind seatdI am NaN! I am a man!
-machine accel=kvmZucca wrote:The part:... looks odd. KVM off and on?papu wrote:Code: Select all
-cpu host,kvm=off -machine type=pc,accel=kvm
Ah. Thanks. :) Didn't knew that option.papu wrote:-cpu host,kvm=off
This is a CPU feature flag. It does NOT disable the acceleration. Instead, it hides the CPUID signature that normally announces "I am a KVM Virtual Machine" to the guest OS
Code: Select all
init=/sbin/openrc-init
-systemd -logind -elogind seatdI am NaN! I am a man!