如何在不联网的情况下与主机共享目录?
我的问题是,设备树中的网络设备不是很稳定,因此我认为在qemu和主机系统之间共享文件夹的最佳方法是在两面都没有缓存的情况下挂载相同的img,但是qemu上的-hda选项不能使HD在/ dev /中可用。 这是我运行的命令。 ./qemu-xilinx/arm-softmmu/qemu-system-arm -M xilinx-zynq-a9 -m 1024 -serial null -serial mon:stdio -dtb resources/devicetree.dtb -kernel resources/zImage -initrd resources.qemu/ramdisk.img -nographic -s 所以问题是:有没有一种方法可以避免联网,但在qemu和主机之间有一个共享目录? 编辑:我编译 ./configure --target-list="arm-softmmu,microblazeel-softmmu" --enable-fdt --disable-kvm --enable-virtfs 应该可以启用任何所需的功能。但是当我跑步 ./qemu-xilinx/arm-softmmu/qemu-system-arm -M xilinx-zynq-a9 -m 1024 -serial null -serial mon:stdio -dtb /homes/cperivol/Sandbox/xilinx-zynq-bootstrap/resources/devicetree.dtb -kernel /homes/cperivol/Sandbox/xilinx-zynq-bootstrap/resources/zImage -initrd /homes/cperivol/Sandbox/xilinx-zynq-bootstrap/resources.qemu/ramdisk.img -nographic -s -fsdev local,path=/homes/cperivol/Sandbox/xilinx-zynq-bootstrap/qemu-sandbox/,security_model=passthrough,id=host0 -device virtio-9p-pci,fsdev=host0,mount_tag=host_tag0 …