在 Qemu 中运行 FreedomBox

在 Qemu 中运行 FreedomBox

我想运行最新的 FreedomBox 图片在我的 Ubuntu 笔记本电脑上。

FreedomBox 图像适用于 DreamPlug,一款 1.2 GHz Marvell Kirkwood 88F6281 SoC(ARM9E),我的 Ubuntu 是 v12.10(3.5.0-17-generic i686)。

我将包含内核和 initrd 映像的映像文件中的第一个分区 (vfat) 挂载到 /mnt

$ sudo mount -o loop,offset=512 freedombox_14_nov_2011.img  /mnt/

并尝试运行 Qemu

$ qemu-system-arm --version
QEMU emulator version 1.2.0 (Debian 1.2.0-2012.09-0ubuntu1), Copyright (c) 2003-2008 Fabrice Bellard
$ sudo qemu-system-arm -net dump -d cpu -M versatilepb -kernel /mnt/vmlinuz-3.0.0-kirkwood -initrd /mnt/initrd.img-3.0.0-kirkwood freedombox_14_nov_2011.img -append "root=/dev/ram0" 
pulseaudio: set_sink_input_volume() failed
pulseaudio: Reason: Invalid argument
pulseaudio: set_sink_input_mute() failed
pulseaudio: Reason: Invalid argument

但 qemu 窗口中的屏幕仍然是黑色的(即使过了几分钟)。而且虚拟网络接口上没有发送任何内容:

$ tcpdump -r qemu-vlan0.pcap
reading from file qemu-vlan0.pcap, link-type EN10MB (Ethernet)
$

qemu-system-arm 进程占用了我 100% 的 CPU 时间,并且 qemu.log 文件(不断)填充了如下行:

[...]
PSR=800001d3 N--- A svc32
R00=00000004 R01=00025307 R02=00000010 R03=0002532b
R04=00000002 R05=005635db R06=00000000 R07=00000000
R08=00025326 R09=80007efd R10=007e94c5 R11=00000001
R12=0000882d R13=007ea3e8 R14=0055036c R15=0054f1bc
PSR=800001d3 N--- A svc32
R00=00000008 R01=00000000 R02=00000008 R03=0002532c
R04=00000093 R05=005635db R06=00000000 R07=007eaa74
R08=007eaa74 R09=80007efd R10=007e94c5 R11=00000001
R12=00000088 R13=007ea3e8 R14=0055036c R15=0054f5c4
PSR=600001d3 -ZC- A svc32
R00=00000008 R01=00000000 R02=00000008 R03=0002532c
R04=00000093 R05=005635db R06=00000000 R07=007eaa74
R08=007eaa74 R09=80007efd R10=007e94c5 R11=00000001
R12=00000088 R13=007ea3e8 R14=0055036c R15=0054f1bc
PSR=800001d3 N--- A svc32
[...]

查看已满日志文件箱(约400kb)。

你们中有谁可以提示我我可能做错了什么吗?

提前非常感谢您!

曼努埃尔

答案1

 qemu-system-x86_64 -m 1G freedombox-stable-free_buster_all-amd64.qcow2

现在这里就可以使用了(debian stretch 在 x86_64 上作为主机)。要实际使用它,您需要连接到管理 Web 界面,以便您可以添加类似于命令行的内容:

-device e1000,netdev=net0 -netdev user,id=net0,hostfwd=tcp::5555-:443

因此 freedombox https (端口 443) 被转发到你的https://本地主机:5555。您将需要允许未知证书才能继续。

相关内容