在没有图形支持的情况下,我该如何实施构建



在redox-os上,我必须运行 make qemu才能运行redox-os。但是我需要在没有图形支持的情况下运行它,不支持make qemu -nographicmake qemu -curses

nasm -f bin -o build/harddrive.bin -D ARCH_x86_64 -ibootloader/x86_64/ bootloader/x86_64/harddrive.asm
SDL_VIDEO_X11_DGAMOUSE=0 qemu-system-x86_64 -serial mon:stdio -d cpu_reset -d guest_errors -smp 4 -m 1024 -machine q35 -net nic,model=e1000 -net user -net dump,file=build/network.pcap -device nec-usb-xhci,id=xhci -device usb-tablet,bus=xhci.0 -drive file=build/harddrive.bin,format=raw
Unable to init server: Could not connect: Connection refused
gtk initialization failed
make: *** [mk/qemu.mk:32: qemu] Error 1

使用QEMU启动而不使用KVM(内核虚拟机)或Graphics

make qemu kvm=no vga=no

刚刚在redox-os上添加

相关内容

  • 没有找到相关文章

最新更新