Chinaunix首页 | 论坛 | 博客
  • 博客访问: 822890
  • 博文数量: 54
  • 博客积分: 8076
  • 博客等级: 中将
  • 技术积分: 648
  • 用 户 组: 普通用户
  • 注册时间: 2006-11-01 15:11
文章分类

全部博文(54)

分类: LINUX

2008-04-02 10:07:59

source: Introduction

is a generic and open source processor emulator which can emulate i386, x86_64, MIPS, MIPSEL, PowerPC and SPARC systems. In case of MIPS or MIPSEL, it can emulate a platform with an IDE controller, and IDE hard disk, an Ethernet card and a serial port. It still lacks a graphic card and screen support, so the installation is done through the emulated serial port.

The Etch distribution provides kernel support this emulated platform. That makes a cheap development platform. The emulated system running on an Athlon 64 X2 3800+ is around 10% faster than an SGI Indy with and R4400SC 200MHz, and possibly with much more RAM (my emulated system has 512MiB of RAM).

This howto has been written for a host system, but could be easily adapted for other distributions. It also has been written for a MIPS emulated system, but there are very few differences compared to a MIPSEL emulated system. They simply differ by the endianess (MIPS is big endian, MIPSEL is little endian). When not explicitely specified in this howto, just replace mips by mipsel.

Alternatively prebuilt images are also available.

Installing QEMU

is currently available as a in the distribution, you will need at least version 0.9.0. If you want to compile it yourself, here is the procedure:

wget

To build QEMU a few packages like SDL needs to be installed on your system. gcc version 3.4 is also needed, as some parts of QEMU do not build with newer gcc versions. As QEMU is present in the archive, just run:

$ su -c "apt-get build-dep qemu"

Then run the configure script:

$ cd qemu-0.9.1
$ ./configure

Then compile it:

$ make

And install it on your system:

$ su -c "make install"
Preparing the installation

First you need to create an image of the hard disk. In my case I have chosen to emulate a 10GB hard-disk, but this size could be changed to correspond to your needs. Note that the file is created in qcow format, so that only the non-empty sectors will be written in the file.

A small tip: create a directory to hold all the files related to the emulated MIPS machine.

$ qemu-img create -f qcow hda.img 10G

It is necessary to have a MIPS or MIPSEL kernel image to pass to QEMU and an initrd image of the Debian-Installer.

For MIPS:

$ wget http://ftp.de.debian.org/debian/dists/etch/main/installer-mips/current/images/qemu/netboot/vmlinux-2.6.18-6-qemu
$ wget http://ftp.de.debian.org/debian/dists/etch/main/installer-mips/current/images/qemu/netboot/initrd.gz

And for MIPSEL:

$ wget http://ftp.de.debian.org/debian/dists/etch/main/installer-mipsel/current/images/qemu/netboot/vmlinux-2.6.18-6-qemu
$ wget http://ftp.de.debian.org/debian/dists/etch/main/installer-mipsel/current/images/qemu/netboot/initrd.gz
Installing Debian Etch

To start the installation process, use the following line:

$ qemu-system-mips -kernel vmlinux-2.6.18-6-qemu -initrd initrd.gz -hda hda.img -append "root=/dev/ram console=ttyS0" -nographic

After a few seconds you should see the kernel booting:

Debian-Installer booting

And then the first screen of the Debian-Installer:

First screen of Debian-Installer

Proceed exacty as with a normal installation, until you get to the following screen. If you need some documentation, please refer to the

Near to the end of the installation you will get the following error screen:

Debian-Installer complains about missing bootloader

Consider this message as harmless. There is no need for a bootloader, as QEMU is able to directly load a kernel and an initrd.

Then you will get to the end of the installation. Congratulations!

End of the installation

When the systems reboot, just exit QEMU as different parameters have to be used to boot the installed system. Personally, I use killall qemu-system-mips, but other methods could also work.

Using the system First boot

To start the system use the following command:

$ qemu-system-mips -kernel vmlinux-2.6.18-6-qemu -hda hda.img -append "root=/dev/hda1 console=ttyS0" -nographic

After a few seconds the system should give you a login prompt:

Console login

Enjoy your new MIPS or MIPSEL platform:

Console showing /proc/cpuinfo More RAM

By default QEMU emulate a machine with 128MiB of RAM. You can use the -m option to increase or decrease the size of the RAM. It is however limited to 512MiB; if you try to use more memory, the additional memory will not be visible.

Connect your emulated machine to a real network

When no option is specified QEMU uses a non priviledged user mode network stack that gives the emulated machine access to the world. But you probably want to make your emulated machine accessible from the outside. It is possible by using the tap mode and bridging the tap interface with the network interface of the host machine.

The first thing to do is to active a bridge on your host machine. For that you have to modify the /etc/network/interfaces file as follow:

Before:
auto eth0
iface eth0 inet dhcp

After:
auto br0
iface br0 inet dhcp
  bridge_ports eth0
  bridge_maxwait 0

Then you need to install the bridge-utils package and restart your network interface:

# apt-get install bridge-utils
# ifdown eth0
# ifup br0

Create a script call /etc/qemu-ifup that will be executed upon the start of QEMU:

#!/bin/sh
echo "Executing /etc/qemu-ifup"
echo "Bringing up $1 for bridged mode..."
sudo /sbin/ifconfig $1 0.0.0.0 promisc up
echo "Adding $1 to br0..."
sudo /usr/sbin/brctl addif br0 $1
sleep 2

As you probably don't want to execute QEMU as root, you need to create a qemu user group and authorize the brctl and ifconfig commands for users of the qemu via sudo. You need to add the following lines to /etc/sudoers (edit the file using visudo):

...
Cmnd_Alias QEMU = /usr/sbin/brctl, /sbin/ifconfig
%qemu ALL=NOPASSWD: QEMU

Finally you can start your emulated machine using the following command

$ qemu-system-mips -kernel vmlinux-2.6.18-3-qemu -hda hda.img -append "root=/dev/hda1 console=ttyS0" -net nic,macaddr=00:16:3e:00:00:01 -net tap
You don't need to give a MAC address if you are emulating only one machine, as QEMU will use a default one. However if you have more than one emulated machine (don't forget QEMU can also emulate other architectures than MIPS), you will have to specify a unique MAC address for each machine. I advise you to select an address from the range 00:16:3e:xx:xx:xx, which has been assigned to . Other optionsQEMU has a lot of other useful options. For a full list, please refer to the QEMU documentation. Links
阅读(4293) | 评论(2) | 转发(0) |
给主人留下些什么吧!~~

sep2008-04-03 15:46:18

首先按照《Debian on an emulated MIPS(EL) machine》安装好qemu。 Had.img为已安装了debian on MIPS的硬盘映像。 initrd.gz和vmlinux-2.6.18-6-qemu均用于qemu引导。 把这三个文件放到同一个文件夹目录下。 执行以下命令: qemu-system-mips -kernel vmlinux-2.6.18-6-qemu -hda hda.img -append "root=/dev/hda1 console=ttyS0" –nographic 可以将启动命令变成shell脚本,这样就不要每次打一长串字符了。脚本bootsystem.sh内容如下。 #!/bin/bash qemu-system-mips -kernel vmlinux-2.6.18-6-qemu -hda hda.img -append "root=/dev/hda1 console=ttyS0" –nographic