Linux
在 QEMU 中載入 Linux bzImage?
make menuconfig
我當時編譯了一個Linuxmake
,現在我編譯了最新版本的Linux。如何將核心載入到 QEMU 中?
在 qemu 的幫助下:
Linux/Multiboot boot specific: -kernel bzImage use 'bzImage' as kernel image -append cmdline use 'cmdline' as kernel command line -initrd file use 'file' as initial ram disk -dtb file use 'file' as device tree image
在這裡使用 Arch 的 kernel/initrd (
qemu -kernel /boot/vmlinuz-linux -initrd /boot/initramfs-linux.img
) 進行了快速測試(因為我沒有提供根設備,所以將我放到了恢復 shell 中)。