Qemu:我怎样才能获得 Bash?

Qemu:我怎样才能获得 Bash?

我有一个文件系统目录file/和一个内核文件zImage。首先,我将文件系统目录转换为SquashFS格式。

我为此使用了以下命令:

mksquashfs file file.squashfs

然后我使用以下命令使用 Qemu 运行它们:

qemu-system-arm -M virt-2.9 -kernel zImage -netdev user,id=net1,hostfwd=tcp::2222-:22 -device virtio-net-pci,netdev=net1 -drive file=file.squashfs,if=virtio,format=raw -append "root=/dev/vda"

但 Bash 没有向我展示。

在此输入图像描述

相关内容