https://stackoverflow.com/questions/38656217/whats-wrong-with-my-virt-manager-config 感觉会没什么人理,毕竟 google 了找到的全是报 bug 的。。。
1
linux40 OP 马上就被人踩了。。。
|
2
wujunze 2016-07-29 18:52:01 +08:00
不懂这个
|
3
maemual 2016-07-29 18:56:40 +08:00
居然贴中文的图片。。。。
|
5
Eoss 2016-07-29 19:58:27 +08:00
-2 。。。。
|
6
linux40 OP 我还是删了。。。
|
7
inFinityzc 2016-07-29 20:01:15 +08:00
-2 ...
|
8
lzhip 2016-07-29 20:14:47 +08:00 via Android
已经可以模拟龙芯,楼主做什么项目的啊?
|
11
linux40 OP |
12
nyanyh 2016-07-30 16:29:21 +08:00
LZ 这个管理器 GUI 是什么啊?
|
14
Azus 2016-07-31 17:18:18 +08:00 1
目前 MIPS 在 libvirt 上不会自动添加 pci root, 可以先用 virsh edit 导入一个简单的模板,再添加和修改其它设备
---- <domain type='qemu'> <name>fulong2e</name> <memory unit='KiB'>131072</memory> <os> <type arch='mips64el' machine='fulong2e'>hvm</type> </os> <devices> <emulator>/usr/bin/qemu-system-mips64el</emulator> <controller type='pci' model='pci-root'/> </devices> </domain> |
15
Azus 2016-07-31 17:22:09 +08:00
不是 virsh edit, 是 virsh define...
|
17
Azus 2016-07-31 19:20:43 +08:00 1
假定新建一个文件为 fulong2e.xml
把 14 楼的那一段保存到 fulong2e.xml 中 执行 virsh define fulong2e.xml 执行完后, virt-manager 中就可以看得到了, 这时就可以通过 virt-manager 修改 不过 fulong2e 就我所知,在 QEMU 下网络是不通的,安装系统需要通过 Malta 安装,安装完后,再替换 Malta 的内核为 fulong2e 的内核 安装: qemu-system-mips64el -M malta \ -kernel netinstall-vmlinux-3.16.0-4-4kc-malta \ -initrd netinstall-initrd.gz \ -append "root=/dev/ram console=ttyS0" \ -drive file=mipsel.qcow2,if=virtio \ -nographic \ -serial mon:stdio 运行 5kc-malta qemu-system-mips64el -M malta \ -kernel vmlinux-3.16.0-4-5kc-malta \ -initrd initrd.img-3.16.0-4-5kc-malta \ -append "root=/dev/vda1 console=ttyS0" \ -drive file=mipsel.qcow2,if=virtio \ -net nic,model=virtio \ -net tap \ -nographic \ -serial mon:stdio 运行 loongson-2e qemu-system-mips64el -M fulong2e \ -kernel vmlinux-3.16.0-4-loongson-2e \ -initrd initrd.img-3.16.0-4-loongson-2e \ -append "root=/dev/sda1 console=ttyS0" \ -drive file=mipsel.qcow2 \ -nographic \ -serial mon:stdio |