1。下载Qemu for Windows
QEMU 0.9.0 binary.
http://www.h6.dion.ne.jp/~kazuw/qemu-win/Qemu-0.9.0-install.exe
BIOS is in a pc-bios directory. Use -L like this.
-L "C:\Program Files\Qemu\pc-bios"
2。下载LiveAndroid
http://code.google.com/p/live-android/downloads/list
3。安装Qemu后,
先创建一块256M的硬盘
C:\Program Files\Qemu>qemu-img create harddisk.img 256M
Formating 'harddisk.img', fmt=raw, size=262144 kB
然后运行LiveAndroid
C:\Program Files\Qemu>qemu -L pc-bios -m 256 -boot d -hda harddisk.img -cdrom liveandroidv0.3.iso
各参数含义:
-L : bios location
-m : memory size (Mbyte)
-boot : boot device floppy(a), hard disk(c), CD-ROM(d)
-hda : hard disk image
-cdrom : CD-ROM image
之后即可看到LiveAndroid被成功引导的过程