QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
23 years ago | |
|---|---|---|
| linux-user | 23 years ago | |
| tests | 23 years ago | |
| COPYING | 23 years ago | |
| COPYING.LIB | 23 years ago | |
| Changelog | 23 years ago | |
| Makefile | 23 years ago | |
| README | 23 years ago | |
| README.distrib | 23 years ago | |
| TODO | 23 years ago | |
| VERSION | 23 years ago | |
| configure | 23 years ago | |
| cpu-i386.h | 23 years ago | |
| dis-asm.h | 23 years ago | |
| dis-buf.c | 23 years ago | |
| dyngen.c | 23 years ago | |
| elf.h | 23 years ago | |
| exec-i386.c | 23 years ago | |
| exec-i386.h | 23 years ago | |
| gen-i386.h | 23 years ago | |
| i386-dis.c | 23 years ago | |
| i386.ld | 23 years ago | |
| op-i386.c | 23 years ago | |
| op_string.h | 23 years ago | |
| opc-i386.h | 23 years ago | |
| opreg_template.h | 23 years ago | |
| ops_template.h | 23 years ago | |
| ppc.ld | 23 years ago | |
| qemu-doc.texi | 23 years ago | |
| syscall-i386.h | 23 years ago | |
| thunk.c | 23 years ago | |
| thunk.h | 23 years ago | |
| translate-i386.c | 23 years ago | |
README
The QEMU x86 emulator
---------------------
INSTALLATION
------------
Type
./configure --interp-prefix=/usr/local/qemu-i386
make
to build qemu and libqemu.a.
Type
make install
to install QEMU in /usr/local/bin
* On x86 you should be able to launch any program by using the
libraries installed on your PC. For example:
./qemu -L / /bin/ls
* On non x86 CPUs, you need first to download at least an x86 glibc
(qemu-XXX-i386-glibc21.tar.gz on the qemu web page). Ensure that
LD_LIBRARY_PATH is not set:
unset LD_LIBRARY_PATH
Then you can launch the precompiled 'ls' x86 executable:
./qemu /usr/local/qemu-i386/bin/ls-i386
You can look at /usr/local/qemu-i386/bin/qemu-conf.sh so that QEMU is
automatically launched by the Linux kernel when you try to launch x86
executables.
Documentation
-------------
Read the documentation in qemu-doc.html.
Fabrice Bellard.