blob: afb61ddd6ce58aaa0ff2d36cdf579bf4fa3680f6 [file] [log] [blame]
bellard386405f2003-03-23 21:28:45 +00001\input texinfo @c -*- texinfo -*-
2
bellard0806e3f2003-10-01 00:15:32 +00003@iftex
bellard1f673132004-04-04 15:21:17 +00004@settitle QEMU CPU Emulator User Documentation
bellard386405f2003-03-23 21:28:45 +00005@titlepage
6@sp 7
bellard1f673132004-04-04 15:21:17 +00007@center @titlefont{QEMU CPU Emulator User Documentation}
bellard386405f2003-03-23 21:28:45 +00008@sp 3
9@end titlepage
bellard0806e3f2003-10-01 00:15:32 +000010@end iftex
bellard386405f2003-03-23 21:28:45 +000011
12@chapter Introduction
13
bellard322d0c62003-06-15 23:29:28 +000014@section Features
bellard386405f2003-03-23 21:28:45 +000015
bellard1f673132004-04-04 15:21:17 +000016QEMU is a FAST! processor emulator using dynamic translation to
17achieve good emulation speed.
bellard1eb20522003-06-25 16:21:49 +000018
19QEMU has two operating modes:
bellard0806e3f2003-10-01 00:15:32 +000020
21@itemize @minus
22
23@item
bellard1f673132004-04-04 15:21:17 +000024Full system emulation. In this mode, QEMU emulates a full system (for
25example a PC), including a processor and various peripherials. It can
26be used to launch different Operating Systems without rebooting the
27PC or to debug system code.
bellard1eb20522003-06-25 16:21:49 +000028
bellard0806e3f2003-10-01 00:15:32 +000029@item
bellard1f673132004-04-04 15:21:17 +000030User mode emulation (Linux host only). In this mode, QEMU can launch
31Linux processes compiled for one CPU on another CPU. It can be used to
32launch the Wine Windows API emulator (@url{http://www.winehq.org}) or
33to ease cross-compilation and cross-debugging.
bellard1eb20522003-06-25 16:21:49 +000034
35@end itemize
36
bellard1f673132004-04-04 15:21:17 +000037As QEMU requires no host kernel driver to run, it is very safe and
bellard1eb20522003-06-25 16:21:49 +000038easy to use.
bellard322d0c62003-06-15 23:29:28 +000039
bellard52c00a52004-04-25 21:27:03 +000040For system emulation, the following hardware targets are supported:
41@itemize
42@item PC (x86 processor)
43@item PREP (PowerPC processor)
44@end itemize
bellard386405f2003-03-23 21:28:45 +000045
bellard1f673132004-04-04 15:21:17 +000046For user emulation, x86, PowerPC, ARM, and SPARC CPUs are supported.
bellard0806e3f2003-10-01 00:15:32 +000047
bellard5b9f4572003-10-28 00:49:54 +000048@chapter Installation
49
bellard1f673132004-04-04 15:21:17 +000050@section Linux
51
bellard5b9f4572003-10-28 00:49:54 +000052If you want to compile QEMU, please read the @file{README} which gives
53the related information. Otherwise just download the binary
54distribution (@file{qemu-XXX-i386.tar.gz}) and untar it as root in
55@file{/}:
56
57@example
58su
59cd /
60tar zxvf /tmp/qemu-XXX-i386.tar.gz
61@end example
62
bellard1f673132004-04-04 15:21:17 +000063@section Windows
bellard8cd0ac22004-05-12 19:09:16 +000064
bellardd691f662003-03-24 21:58:34 +000065@itemize
bellard1f673132004-04-04 15:21:17 +000066@item Install the current versions of MSYS and MinGW from
67@url{http://www.mingw.org/}. You can find detailed installation
68instructions in the download section and the FAQ.
bellardd691f662003-03-24 21:58:34 +000069
bellard1f673132004-04-04 15:21:17 +000070@item Download
71the MinGW development library of SDL 1.2.x
72(@file{SDL-devel-1.2.x-mingw32.tar.gz}) from
73@url{http://www.libsdl.org}. Unpack it in a temporary place, and
74unpack the archive @file{i386-mingw32msvc.tar.gz} in the MinGW tool
75directory. Edit the @file{sdl-config} script so that it gives the
76correct SDL directory when invoked.
bellard386405f2003-03-23 21:28:45 +000077
bellard1f673132004-04-04 15:21:17 +000078@item Extract the current version of QEMU.
79
80@item Start the MSYS shell (file @file{msys.bat}).
bellard386405f2003-03-23 21:28:45 +000081
bellard1f673132004-04-04 15:21:17 +000082@item Change to the QEMU directory. Launch @file{./configure} and
83@file{make}. If you have problems using SDL, verify that
84@file{sdl-config} can be launched from the MSYS command line.
bellard386405f2003-03-23 21:28:45 +000085
bellard1f673132004-04-04 15:21:17 +000086@item You can install QEMU in @file{Program Files/Qemu} by typing
87@file{make install}. Don't forget to copy @file{SDL.dll} in
88@file{Program Files/Qemu}.
bellard1eb87252003-04-11 01:12:28 +000089
bellard168485b2003-03-29 16:57:34 +000090@end itemize
91
bellard1f673132004-04-04 15:21:17 +000092@section Cross compilation for Windows with Linux
bellard168485b2003-03-29 16:57:34 +000093
94@itemize
bellard1f673132004-04-04 15:21:17 +000095@item
96Install the MinGW cross compilation tools available at
97@url{http://www.mingw.org/}.
bellard168485b2003-03-29 16:57:34 +000098
bellard1f673132004-04-04 15:21:17 +000099@item
100Install the Win32 version of SDL (@url{http://www.libsdl.org}) by
101unpacking @file{i386-mingw32msvc.tar.gz}. Set up the PATH environment
102variable so that @file{i386-mingw32msvc-sdl-config} can be launched by
103the QEMU configuration script.
bellard168485b2003-03-29 16:57:34 +0000104
bellard1f673132004-04-04 15:21:17 +0000105@item
106Configure QEMU for Windows cross compilation:
bellard168485b2003-03-29 16:57:34 +0000107@example
bellard1f673132004-04-04 15:21:17 +0000108./configure --enable-mingw32
bellard168485b2003-03-29 16:57:34 +0000109@end example
bellard1f673132004-04-04 15:21:17 +0000110If necessary, you can change the cross-prefix according to the prefix
111choosen for the MinGW tools with --cross-prefix. You can also use
112--prefix to set the Win32 install path.
bellard168485b2003-03-29 16:57:34 +0000113
bellard1f673132004-04-04 15:21:17 +0000114@item You can install QEMU in the installation directory by typing
115@file{make install}. Don't forget to copy @file{SDL.dll} in the
116installation directory.
bellardd691f662003-03-24 21:58:34 +0000117
118@end itemize
119
bellard1f673132004-04-04 15:21:17 +0000120Note: Currently, Wine does not seem able to launch
121QEMU for Win32.
bellardd691f662003-03-24 21:58:34 +0000122
bellard1f673132004-04-04 15:21:17 +0000123@section Mac OS X
bellardd691f662003-03-24 21:58:34 +0000124
bellard1f673132004-04-04 15:21:17 +0000125Mac OS X is currently not supported.
bellarddf0f11a2003-05-28 00:27:57 +0000126
bellard52c00a52004-04-25 21:27:03 +0000127@chapter QEMU PC System emulator invocation
bellard1eb20522003-06-25 16:21:49 +0000128
bellard0806e3f2003-10-01 00:15:32 +0000129@section Introduction
130
131@c man begin DESCRIPTION
132
bellard52c00a52004-04-25 21:27:03 +0000133The QEMU System emulator simulates a complete PC.
bellard0806e3f2003-10-01 00:15:32 +0000134
135In order to meet specific user needs, two versions of QEMU are
136available:
137
138@enumerate
139
140@item
bellard285dc332003-10-27 23:58:04 +0000141@code{qemu-fast} uses the host Memory Management Unit (MMU) to simulate
bellard0806e3f2003-10-01 00:15:32 +0000142the x86 MMU. It is @emph{fast} but has limitations because the whole 4 GB
143address space cannot be used and some memory mapped peripherials
144cannot be emulated accurately yet. Therefore, a specific Linux kernel
145must be used (@xref{linux_compile}).
146
147@item
bellard285dc332003-10-27 23:58:04 +0000148@code{qemu} uses a software MMU. It is about @emph{two times
149slower} but gives a more accurate emulation.
bellard0806e3f2003-10-01 00:15:32 +0000150
151@end enumerate
152
153QEMU emulates the following PC peripherials:
154
155@itemize @minus
156@item
157VGA (hardware level, including all non standard modes)
158@item
159PS/2 mouse and keyboard
160@item
bellard181f1552003-11-13 01:47:16 +00001612 IDE interfaces with hard disk and CD-ROM support
bellard1f673132004-04-04 15:21:17 +0000162@item
163Floppy disk
bellard0806e3f2003-10-01 00:15:32 +0000164@item
bellard1f673132004-04-04 15:21:17 +0000165up to 6 NE2000 network adapters
bellard0806e3f2003-10-01 00:15:32 +0000166@item
bellard181f1552003-11-13 01:47:16 +0000167Serial port
168@item
169Soundblaster 16 card
bellard0806e3f2003-10-01 00:15:32 +0000170@end itemize
171
172@c man end
173
bellard1eb20522003-06-25 16:21:49 +0000174@section Quick Start
175
bellard285dc332003-10-27 23:58:04 +0000176Download and uncompress the linux image (@file{linux.img}) and type:
bellard0806e3f2003-10-01 00:15:32 +0000177
178@example
bellard285dc332003-10-27 23:58:04 +0000179qemu linux.img
bellard0806e3f2003-10-01 00:15:32 +0000180@end example
181
182Linux should boot and give you a prompt.
183
bellard1f673132004-04-04 15:21:17 +0000184@section Invocation
185
186@example
187@c man begin SYNOPSIS
188usage: qemu [options] [disk_image]
189@c man end
190@end example
191
192@c man begin OPTIONS
193@var{disk_image} is a raw hard disk image for IDE hard disk 0.
194
195General options:
196@table @option
197@item -fda file
198@item -fdb file
199Use @var{file} as floppy disk 0/1 image (@xref{disk_images}).
200
201@item -hda file
202@item -hdb file
203@item -hdc file
204@item -hdd file
205Use @var{file} as hard disk 0, 1, 2 or 3 image (@xref{disk_images}).
206
207@item -cdrom file
208Use @var{file} as CD-ROM image (you cannot use @option{-hdc} and and
209@option{-cdrom} at the same time).
210
211@item -boot [a|c|d]
212Boot on floppy (a), hard disk (c) or CD-ROM (d). Hard disk boot is
213the default.
214
215@item -snapshot
216Write to temporary files instead of disk image files. In this case,
217the raw disk image you use is not written back. You can however force
218the write back by pressing @key{C-a s} (@xref{disk_images}).
219
220@item -m megs
221Set virtual RAM size to @var{megs} megabytes.
222
223@item -initrd file
224Use @var{file} as initial ram disk.
225
226@item -nographic
227
228Normally, QEMU uses SDL to display the VGA output. With this option,
229you can totally disable graphical output so that QEMU is a simple
230command line application. The emulated serial port is redirected on
231the console. Therefore, you can still use QEMU to debug a Linux kernel
232with a serial console.
233
bellarda8c490c2004-04-26 20:59:17 +0000234@item -enable-audio
235
236The SB16 emulation is disabled by default as it may give problems with
237Windows. You can enable it manually with this option.
238
bellard1f673132004-04-04 15:21:17 +0000239@end table
240
241Network options:
242
243@table @option
244
245@item -n script
bellard52c00a52004-04-25 21:27:03 +0000246Set TUN/TAP network init script [default=/etc/qemu-ifup]. This script
247is launched to configure the host network interface (usually tun0)
bellard1f673132004-04-04 15:21:17 +0000248corresponding to the virtual NE2000 card.
249
bellard1f673132004-04-04 15:21:17 +0000250@item -macaddr addr
251
252Set the mac address of the first interface (the format is
253aa:bb:cc:dd:ee:ff in hexa). The mac address is incremented for each
254new network interface.
255
bellard52c00a52004-04-25 21:27:03 +0000256@item -tun-fd fd
257Assumes @var{fd} talks to a tap/tun host network interface and use
258it. Read @url{http://bellard.org/qemu/tetrinet.html} to have an
259example of its use.
260
261@item -user-net
262(Experimental) Use the user mode network stack. This is the default if
263no tun/tap network init script is found.
264
265@item -dummy-net
266Use the dummy network stack: no packet will be received on the network
267cards.
bellard1f673132004-04-04 15:21:17 +0000268
269@end table
270
271Linux boot specific. When using this options, you can use a given
272Linux kernel without installing it in the disk image. It can be useful
273for easier testing of various kernels.
274
275@table @option
276
277@item -kernel bzImage
278Use @var{bzImage} as kernel image.
279
280@item -append cmdline
281Use @var{cmdline} as kernel command line
282
283@item -initrd file
284Use @var{file} as initial ram disk.
285
286@end table
287
288Debug options:
289@table @option
290@item -s
291Wait gdb connection to port 1234 (@xref{gdb_usage}).
292@item -p port
293Change gdb connection port.
bellard52c00a52004-04-25 21:27:03 +0000294@item -S
295Do not start CPU at startup (you must type 'c' in the monitor).
bellard1f673132004-04-04 15:21:17 +0000296@item -d
297Output log in /tmp/qemu.log
298@end table
299
bellarda1b74fe2004-05-08 13:26:35 +0000300During the graphical emulation, you can use the following keys:
301@table @key
bellard10d315a2004-05-08 21:00:00 +0000302@item Ctrl-Shift
bellarda1b74fe2004-05-08 13:26:35 +0000303Toggle mouse and keyboard grab.
bellard10d315a2004-05-08 21:00:00 +0000304@item Ctrl-Shift-f
bellarda1b74fe2004-05-08 13:26:35 +0000305Toggle full screen
306@end table
307
bellard1f673132004-04-04 15:21:17 +0000308During emulation, if you are using the serial console, use @key{C-a h}
309to get terminal commands:
310
311@table @key
bellarda1b74fe2004-05-08 13:26:35 +0000312@item Ctrl-a h
bellard1f673132004-04-04 15:21:17 +0000313Print this help
bellarda1b74fe2004-05-08 13:26:35 +0000314@item Ctrl-a x
bellard1f673132004-04-04 15:21:17 +0000315Exit emulatior
bellarda1b74fe2004-05-08 13:26:35 +0000316@item Ctrl-a s
bellard1f673132004-04-04 15:21:17 +0000317Save disk data back to file (if -snapshot)
bellarda1b74fe2004-05-08 13:26:35 +0000318@item Ctrl-a b
bellard1f673132004-04-04 15:21:17 +0000319Send break (magic sysrq in Linux)
bellarda1b74fe2004-05-08 13:26:35 +0000320@item Ctrl-a c
bellard1f673132004-04-04 15:21:17 +0000321Switch between console and monitor
bellarda1b74fe2004-05-08 13:26:35 +0000322@item Ctrl-a Ctrl-a
323Send Ctrl-a
bellard1f673132004-04-04 15:21:17 +0000324@end table
325@c man end
326
327@ignore
328
329@setfilename qemu
330@settitle QEMU System Emulator
331
332@c man begin SEEALSO
333The HTML documentation of QEMU for more precise information and Linux
334user mode emulator invocation.
335@c man end
336
337@c man begin AUTHOR
338Fabrice Bellard
339@c man end
340
341@end ignore
342
343@end ignore
344
345
346@section QEMU Monitor
347
348The QEMU monitor is used to give complex commands to the QEMU
349emulator. You can use it to:
350
351@itemize @minus
352
353@item
354Remove or insert removable medias images
355(such as CD-ROM or floppies)
356
357@item
358Freeze/unfreeze the Virtual Machine (VM) and save or restore its state
359from a disk file.
360
361@item Inspect the VM state without an external debugger.
362
363@end itemize
364
365@subsection Commands
366
367The following commands are available:
368
369@table @option
370
371@item help or ? [cmd]
372Show the help for all commands or just for command @var{cmd}.
373
374@item commit
375Commit changes to the disk images (if -snapshot is used)
376
377@item info subcommand
378show various information about the system state
379
380@table @option
381@item info network
382show the network state
383@item info block
384show the block devices
385@item info registers
386show the cpu registers
387@item info history
388show the command line history
389@end table
390
391@item q or quit
392Quit the emulator.
393
394@item eject [-f] device
395Eject a removable media (use -f to force it).
396
397@item change device filename
398Change a removable media.
399
400@item screendump filename
401Save screen into PPM image @var{filename}.
402
403@item log item1[,...]
404Activate logging of the specified items to @file{/tmp/qemu.log}.
405
406@item savevm filename
407Save the whole virtual machine state to @var{filename}.
408
409@item loadvm filename
410Restore the whole virtual machine state from @var{filename}.
411
412@item stop
413Stop emulation.
414
415@item c or cont
416Resume emulation.
417
418@item gdbserver [port]
419Start gdbserver session (default port=1234)
420
421@item x/fmt addr
422Virtual memory dump starting at @var{addr}.
423
424@item xp /fmt addr
425Physical memory dump starting at @var{addr}.
426
427@var{fmt} is a format which tells the command how to format the
428data. Its syntax is: @option{/@{count@}@{format@}@{size@}}
429
430@table @var
431@item count
432is the number of items to be dumped.
433
434@item format
435can be x (hexa), d (signed decimal), u (unsigned decimal), o (octal),
436c (char) or i (asm instruction).
437
438@item size
bellard52c00a52004-04-25 21:27:03 +0000439can be b (8 bits), h (16 bits), w (32 bits) or g (64 bits). On x86,
440@code{h} or @code{w} can be specified with the @code{i} format to
441respectively select 16 or 32 bit code instruction size.
bellard1f673132004-04-04 15:21:17 +0000442
443@end table
444
445Examples:
446@itemize
447@item
448Dump 10 instructions at the current instruction pointer:
449@example
450(qemu) x/10i $eip
4510x90107063: ret
4520x90107064: sti
4530x90107065: lea 0x0(%esi,1),%esi
4540x90107069: lea 0x0(%edi,1),%edi
4550x90107070: ret
4560x90107071: jmp 0x90107080
4570x90107073: nop
4580x90107074: nop
4590x90107075: nop
4600x90107076: nop
461@end example
462
463@item
464Dump 80 16 bit values at the start of the video memory.
465@example
466(qemu) xp/80hx 0xb8000
4670x000b8000: 0x0b50 0x0b6c 0x0b65 0x0b78 0x0b38 0x0b36 0x0b2f 0x0b42
4680x000b8010: 0x0b6f 0x0b63 0x0b68 0x0b73 0x0b20 0x0b56 0x0b47 0x0b41
4690x000b8020: 0x0b42 0x0b69 0x0b6f 0x0b73 0x0b20 0x0b63 0x0b75 0x0b72
4700x000b8030: 0x0b72 0x0b65 0x0b6e 0x0b74 0x0b2d 0x0b63 0x0b76 0x0b73
4710x000b8040: 0x0b20 0x0b30 0x0b35 0x0b20 0x0b4e 0x0b6f 0x0b76 0x0b20
4720x000b8050: 0x0b32 0x0b30 0x0b30 0x0b33 0x0720 0x0720 0x0720 0x0720
4730x000b8060: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
4740x000b8070: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
4750x000b8080: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
4760x000b8090: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
477@end example
478@end itemize
479
480@item p or print/fmt expr
481
482Print expression value. Only the @var{format} part of @var{fmt} is
483used.
484
485@end table
486
487@subsection Integer expressions
488
489The monitor understands integers expressions for every integer
490argument. You can use register names to get the value of specifics
491CPU registers by prefixing them with @emph{$}.
492
493@node disk_images
494@section Disk Images
495
496@subsection Raw disk images
497
498The disk images can simply be raw images of the hard disk. You can
499create them with the command:
500@example
bellarda1b74fe2004-05-08 13:26:35 +0000501dd of=myimage bs=1024 seek=mysize count=0
bellard1f673132004-04-04 15:21:17 +0000502@end example
503where @var{myimage} is the image filename and @var{mysize} is its size
504in kilobytes.
505
506@subsection Snapshot mode
507
508If you use the option @option{-snapshot}, all disk images are
509considered as read only. When sectors in written, they are written in
510a temporary file created in @file{/tmp}. You can however force the
511write back to the raw disk images by pressing @key{C-a s}.
512
513NOTE: The snapshot mode only works with raw disk images.
514
515@subsection Copy On Write disk images
516
517QEMU also supports user mode Linux
518(@url{http://user-mode-linux.sourceforge.net/}) Copy On Write (COW)
519disk images. The COW disk images are much smaller than normal images
520as they store only modified sectors. They also permit the use of the
521same disk image template for many users.
522
523To create a COW disk images, use the command:
524
525@example
526qemu-mkcow -f myrawimage.bin mycowimage.cow
527@end example
528
529@file{myrawimage.bin} is a raw image you want to use as original disk
530image. It will never be written to.
531
532@file{mycowimage.cow} is the COW disk image which is created by
533@code{qemu-mkcow}. You can use it directly with the @option{-hdx}
534options. You must not modify the original raw disk image if you use
535COW images, as COW images only store the modified sectors from the raw
536disk image. QEMU stores the original raw disk image name and its
537modified time in the COW disk image so that chances of mistakes are
538reduced.
539
540If the raw disk image is not read-only, by pressing @key{C-a s} you
541can flush the COW disk image back into the raw disk image, as in
542snapshot mode.
543
544COW disk images can also be created without a corresponding raw disk
545image. It is useful to have a big initial virtual disk image without
546using much disk space. Use:
547
548@example
549qemu-mkcow mycowimage.cow 1024
550@end example
551
552to create a 1 gigabyte empty COW disk image.
553
554NOTES:
555@enumerate
556@item
557COW disk images must be created on file systems supporting
558@emph{holes} such as ext2 or ext3.
559@item
560Since holes are used, the displayed size of the COW disk image is not
561the real one. To know it, use the @code{ls -ls} command.
562@end enumerate
563
bellard9d4fb822004-04-26 20:55:38 +0000564@section Network emulation
565
566QEMU simulates up to 6 networks cards (NE2000 boards). Each card can
567be connected to a specific host network interface.
568
569@subsection Using tun/tap network interface
570
571This is the standard way to emulate network. QEMU adds a virtual
572network device on your host (called @code{tun0}), and you can then
573configure it as if it was a real ethernet card.
574
575As an example, you can download the @file{linux-test-xxx.tar.gz}
576archive and copy the script @file{qemu-ifup} in @file{/etc} and
577configure properly @code{sudo} so that the command @code{ifconfig}
578contained in @file{qemu-ifup} can be executed as root. You must verify
579that your host kernel supports the TUN/TAP network interfaces: the
580device @file{/dev/net/tun} must be present.
581
582See @ref{direct_linux_boot} to have an example of network use with a
583Linux distribution.
584
585@subsection Using the user mode network stack
586
587This is @emph{experimental} (version 0.5.4). You must configure qemu
588with @code{--enable-slirp}. Then by using the option
589@option{-user-net} or if you have no tun/tap init script, QEMU uses a
590completely user mode network stack (you don't need root priviledge to
591use the virtual network). The virtual network configuration is the
592following:
593
594@example
595
596QEMU Virtual Machine <------> Firewall/DHCP server <-----> Internet
597 (10.0.2.x) | (10.0.2.2)
598 |
599 ----> DNS
600 (10.0.2.3)
601@end example
602
603The QEMU VM behaves as if it was behind a firewall which blocks all
604incoming connections. You can use a DHCP client to automatically
605configure the network in the QEMU VM.
606
607In order to check that the user mode network is working, you can ping
608the address 10.0.2.2 and verify that you got an address in the range
60910.0.2.x from the QEMU virtual DHCP server.
610
611@node direct_linux_boot
612@section Direct Linux Boot
bellard0806e3f2003-10-01 00:15:32 +0000613
614This section explains how to launch a Linux kernel inside QEMU without
615having to make a full bootable image. It is very useful for fast Linux
616kernel testing. The QEMU network configuration is also explained.
bellard1eb20522003-06-25 16:21:49 +0000617
618@enumerate
619@item
bellard0806e3f2003-10-01 00:15:32 +0000620Download the archive @file{linux-test-xxx.tar.gz} containing a Linux
621kernel and a disk image.
bellard1eb20522003-06-25 16:21:49 +0000622
623@item Optional: If you want network support (for example to launch X11 examples), you
bellard0806e3f2003-10-01 00:15:32 +0000624must copy the script @file{qemu-ifup} in @file{/etc} and configure
bellard1eb20522003-06-25 16:21:49 +0000625properly @code{sudo} so that the command @code{ifconfig} contained in
bellard0806e3f2003-10-01 00:15:32 +0000626@file{qemu-ifup} can be executed as root. You must verify that your host
bellard1eb20522003-06-25 16:21:49 +0000627kernel supports the TUN/TAP network interfaces: the device
628@file{/dev/net/tun} must be present.
629
630When network is enabled, there is a virtual network connection between
631the host kernel and the emulated kernel. The emulated kernel is seen
632from the host kernel at IP address 172.20.0.2 and the host kernel is
633seen from the emulated kernel at IP address 172.20.0.1.
634
bellard0806e3f2003-10-01 00:15:32 +0000635@item Launch @code{qemu.sh}. You should have the following output:
bellard1eb20522003-06-25 16:21:49 +0000636
637@example
bellard0806e3f2003-10-01 00:15:32 +0000638> ./qemu.sh
bellard181f1552003-11-13 01:47:16 +0000639Connected to host network interface: tun0
640Linux version 2.4.21 (bellard@voyager.localdomain) (gcc version 3.2.2 20030222 (Red Hat Linux 3.2.2-5)) #5 Tue Nov 11 18:18:53 CET 2003
bellard1eb20522003-06-25 16:21:49 +0000641BIOS-provided physical RAM map:
bellard46907642003-07-07 12:17:46 +0000642 BIOS-e801: 0000000000000000 - 000000000009f000 (usable)
643 BIOS-e801: 0000000000100000 - 0000000002000000 (usable)
bellard1eb20522003-06-25 16:21:49 +000064432MB LOWMEM available.
645On node 0 totalpages: 8192
646zone(0): 4096 pages.
647zone(1): 4096 pages.
648zone(2): 0 pages.
bellard181f1552003-11-13 01:47:16 +0000649Kernel command line: root=/dev/hda sb=0x220,5,1,5 ide2=noprobe ide3=noprobe ide4=noprobe ide5=noprobe console=ttyS0
bellard46907642003-07-07 12:17:46 +0000650ide_setup: ide2=noprobe
651ide_setup: ide3=noprobe
652ide_setup: ide4=noprobe
653ide_setup: ide5=noprobe
bellard1eb20522003-06-25 16:21:49 +0000654Initializing CPU#0
bellard181f1552003-11-13 01:47:16 +0000655Detected 2399.621 MHz processor.
656Console: colour EGA 80x25
657Calibrating delay loop... 4744.80 BogoMIPS
658Memory: 28872k/32768k available (1210k kernel code, 3508k reserved, 266k data, 64k init, 0k highmem)
bellard1eb20522003-06-25 16:21:49 +0000659Dentry cache hash table entries: 4096 (order: 3, 32768 bytes)
660Inode cache hash table entries: 2048 (order: 2, 16384 bytes)
bellard181f1552003-11-13 01:47:16 +0000661Mount cache hash table entries: 512 (order: 0, 4096 bytes)
bellard1eb20522003-06-25 16:21:49 +0000662Buffer-cache hash table entries: 1024 (order: 0, 4096 bytes)
663Page-cache hash table entries: 8192 (order: 3, 32768 bytes)
664CPU: Intel Pentium Pro stepping 03
665Checking 'hlt' instruction... OK.
666POSIX conformance testing by UNIFIX
667Linux NET4.0 for Linux 2.4
668Based upon Swansea University Computer Society NET3.039
669Initializing RT netlink socket
670apm: BIOS not found.
671Starting kswapd
bellard46907642003-07-07 12:17:46 +0000672Journalled Block Device driver loaded
bellard181f1552003-11-13 01:47:16 +0000673Detected PS/2 Mouse Port.
bellard1eb20522003-06-25 16:21:49 +0000674pty: 256 Unix98 ptys configured
675Serial driver version 5.05c (2001-07-08) with no serial options enabled
676ttyS00 at 0x03f8 (irq = 4) is a 16450
677ne.c:v1.10 9/23/94 Donald Becker (becker@scyld.com)
678Last modified Nov 1, 2000 by Paul Gortmaker
679NE*000 ethercard probe at 0x300: 52 54 00 12 34 56
680eth0: NE2000 found at 0x300, using IRQ 9.
bellard46907642003-07-07 12:17:46 +0000681RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize
bellard181f1552003-11-13 01:47:16 +0000682Uniform Multi-Platform E-IDE driver Revision: 7.00beta4-2.4
683ide: Assuming 50MHz system bus speed for PIO modes; override with idebus=xx
684hda: QEMU HARDDISK, ATA DISK drive
685ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
686hda: attached ide-disk driver.
687hda: 20480 sectors (10 MB) w/256KiB Cache, CHS=20/16/63
688Partition check:
689 hda:
690Soundblaster audio driver Copyright (C) by Hannu Savolainen 1993-1996
bellard1eb20522003-06-25 16:21:49 +0000691NET4: Linux TCP/IP 1.0 for NET4.0
692IP Protocols: ICMP, UDP, TCP, IGMP
693IP: routing cache hash table of 512 buckets, 4Kbytes
bellard46907642003-07-07 12:17:46 +0000694TCP: Hash tables configured (established 2048 bind 4096)
bellard1eb20522003-06-25 16:21:49 +0000695NET4: Unix domain sockets 1.0/SMP for Linux NET4.0.
bellard46907642003-07-07 12:17:46 +0000696EXT2-fs warning: mounting unchecked fs, running e2fsck is recommended
bellard1eb20522003-06-25 16:21:49 +0000697VFS: Mounted root (ext2 filesystem).
bellard181f1552003-11-13 01:47:16 +0000698Freeing unused kernel memory: 64k freed
699
700Linux version 2.4.21 (bellard@voyager.localdomain) (gcc version 3.2.2 20030222 (Red Hat Linux 3.2.2-5)) #5 Tue Nov 11 18:18:53 CET 2003
701
702QEMU Linux test distribution (based on Redhat 9)
703
704Type 'exit' to halt the system
705
706sh-2.05b#
bellard1eb20522003-06-25 16:21:49 +0000707@end example
708
709@item
710Then you can play with the kernel inside the virtual serial console. You
711can launch @code{ls} for example. Type @key{Ctrl-a h} to have an help
712about the keys you can type inside the virtual serial console. In
bellardd5a0b502003-06-27 12:02:03 +0000713particular, use @key{Ctrl-a x} to exit QEMU and use @key{Ctrl-a b} as
714the Magic SysRq key.
bellard1eb20522003-06-25 16:21:49 +0000715
716@item
717If the network is enabled, launch the script @file{/etc/linuxrc} in the
718emulator (don't forget the leading dot):
719@example
720. /etc/linuxrc
721@end example
722
723Then enable X11 connections on your PC from the emulated Linux:
724@example
725xhost +172.20.0.2
726@end example
727
728You can now launch @file{xterm} or @file{xlogo} and verify that you have
729a real Virtual Linux system !
730
731@end enumerate
732
bellardd5a0b502003-06-27 12:02:03 +0000733NOTES:
734@enumerate
735@item
bellard0806e3f2003-10-01 00:15:32 +0000736A 2.5.74 kernel is also included in the archive. Just
737replace the bzImage in qemu.sh to try it.
bellardd5a0b502003-06-27 12:02:03 +0000738
739@item
bellard1f673132004-04-04 15:21:17 +0000740qemu-fast creates a temporary file in @var{$QEMU_TMPDIR} (@file{/tmp} is the
bellardd5a0b502003-06-27 12:02:03 +0000741default) containing all the simulated PC memory. If possible, try to use
742a temporary directory using the tmpfs filesystem to avoid too many
743unnecessary disk accesses.
744
745@item
bellard9d4520d2003-10-28 01:38:57 +0000746In order to exit cleanly from qemu, you can do a @emph{shutdown} inside
747qemu. qemu will automatically exit when the Linux shutdown is done.
bellard46907642003-07-07 12:17:46 +0000748
749@item
750You can boot slightly faster by disabling the probe of non present IDE
751interfaces. To do so, add the following options on the kernel command
752line:
753@example
754ide1=noprobe ide2=noprobe ide3=noprobe ide4=noprobe ide5=noprobe
755@end example
756
757@item
758The example disk image is a modified version of the one made by Kevin
bellard1eb20522003-06-25 16:21:49 +0000759Lawton for the plex86 Project (@url{www.plex86.org}).
760
bellardd5a0b502003-06-27 12:02:03 +0000761@end enumerate
762
bellard0806e3f2003-10-01 00:15:32 +0000763@node linux_compile
bellard46907642003-07-07 12:17:46 +0000764@section Linux Kernel Compilation
bellard1eb20522003-06-25 16:21:49 +0000765
bellard285dc332003-10-27 23:58:04 +0000766You can use any linux kernel with QEMU. However, if you want to use
bellard1f673132004-04-04 15:21:17 +0000767@code{qemu-fast} to get maximum performances, you must use a modified
768guest kernel. If you are using a 2.6 guest kernel, you can use
769directly the patch @file{linux-2.6-qemu-fast.patch} made by Rusty
770Russel available in the QEMU source archive. Otherwise, you can make the
771following changes @emph{by hand} to the Linux kernel:
bellard1eb20522003-06-25 16:21:49 +0000772
bellard46907642003-07-07 12:17:46 +0000773@enumerate
774@item
775The kernel must be mapped at 0x90000000 (the default is
7760xc0000000). You must modify only two lines in the kernel source:
777
778In @file{include/asm/page.h}, replace
bellard1eb20522003-06-25 16:21:49 +0000779@example
780#define __PAGE_OFFSET (0xc0000000)
781@end example
782by
783@example
784#define __PAGE_OFFSET (0x90000000)
785@end example
786
bellard46907642003-07-07 12:17:46 +0000787And in @file{arch/i386/vmlinux.lds}, replace
bellard1eb20522003-06-25 16:21:49 +0000788@example
789 . = 0xc0000000 + 0x100000;
790@end example
791by
792@example
793 . = 0x90000000 + 0x100000;
794@end example
795
bellard46907642003-07-07 12:17:46 +0000796@item
797If you want to enable SMP (Symmetric Multi-Processing) support, you
798must make the following change in @file{include/asm/fixmap.h}. Replace
bellard1eb20522003-06-25 16:21:49 +0000799@example
bellard46907642003-07-07 12:17:46 +0000800#define FIXADDR_TOP (0xffffX000UL)
bellard1eb20522003-06-25 16:21:49 +0000801@end example
bellard46907642003-07-07 12:17:46 +0000802by
803@example
804#define FIXADDR_TOP (0xa7ffX000UL)
805@end example
806(X is 'e' or 'f' depending on the kernel version). Although you can
807use an SMP kernel with QEMU, it only supports one CPU.
bellard1eb20522003-06-25 16:21:49 +0000808
bellard46907642003-07-07 12:17:46 +0000809@item
bellard1f673132004-04-04 15:21:17 +0000810If you are not using a 2.6 kernel as host kernel but if you use a target
8112.6 kernel, you must also ensure that the 'HZ' define is set to 100
bellardd5a0b502003-06-27 12:02:03 +0000812(1000 is the default) as QEMU cannot currently emulate timers at
bellard1f673132004-04-04 15:21:17 +0000813frequencies greater than 100 Hz on host Linux systems < 2.6. In
bellard46907642003-07-07 12:17:46 +0000814@file{include/asm/param.h}, replace:
bellardd5a0b502003-06-27 12:02:03 +0000815
816@example
817# define HZ 1000 /* Internal kernel timer frequency */
818@end example
819by
820@example
821# define HZ 100 /* Internal kernel timer frequency */
822@end example
823
bellard46907642003-07-07 12:17:46 +0000824@end enumerate
825
826The file config-2.x.x gives the configuration of the example kernels.
827
828Just type
829@example
830make bzImage
831@end example
832
833As you would do to make a real kernel. Then you can use with QEMU
834exactly the same kernel as you would boot on your PC (in
835@file{arch/i386/boot/bzImage}).
bellardda415d52003-06-27 18:50:50 +0000836
bellard0806e3f2003-10-01 00:15:32 +0000837@node gdb_usage
bellardda415d52003-06-27 18:50:50 +0000838@section GDB usage
839
840QEMU has a primitive support to work with gdb, so that you can do
bellard0806e3f2003-10-01 00:15:32 +0000841'Ctrl-C' while the virtual machine is running and inspect its state.
bellardda415d52003-06-27 18:50:50 +0000842
bellard9d4520d2003-10-28 01:38:57 +0000843In order to use gdb, launch qemu with the '-s' option. It will wait for a
bellardda415d52003-06-27 18:50:50 +0000844gdb connection:
845@example
bellard6c9bf892004-01-24 13:46:56 +0000846> qemu -s -kernel arch/i386/boot/bzImage -hda root-2.4.20.img -append "root=/dev/hda"
bellardda415d52003-06-27 18:50:50 +0000847Connected to host network interface: tun0
848Waiting gdb connection on port 1234
849@end example
850
851Then launch gdb on the 'vmlinux' executable:
852@example
853> gdb vmlinux
854@end example
855
856In gdb, connect to QEMU:
857@example
bellard6c9bf892004-01-24 13:46:56 +0000858(gdb) target remote localhost:1234
bellardda415d52003-06-27 18:50:50 +0000859@end example
860
861Then you can use gdb normally. For example, type 'c' to launch the kernel:
862@example
863(gdb) c
864@end example
865
bellard0806e3f2003-10-01 00:15:32 +0000866Here are some useful tips in order to use gdb on system code:
867
868@enumerate
869@item
870Use @code{info reg} to display all the CPU registers.
871@item
872Use @code{x/10i $eip} to display the code at the PC position.
873@item
874Use @code{set architecture i8086} to dump 16 bit code. Then use
875@code{x/10i $cs*16+*eip} to dump the code at the PC position.
876@end enumerate
877
bellard52c00a52004-04-25 21:27:03 +0000878@chapter QEMU PREP PowerPC System emulator invocation
879
880Use the executable @file{qemu-system-ppc} to simulate a complete PREP
881PowerPC system.
882
883QEMU emulates the following PREP peripherials:
884
885@itemize @minus
886@item
8872 IDE interfaces with hard disk and CD-ROM support
888@item
889Floppy disk
890@item
891up to 6 NE2000 network adapters
892@item
893Serial port
894@item
895PREP Non Volatile RAM
896@end itemize
897
898You can read the qemu PC system emulation chapter to have more
899informations about QEMU usage.
900
901More information is available at
902@url{http://jocelyn.mayer.free.fr/qemu-ppc/}.
903
bellard1f673132004-04-04 15:21:17 +0000904@chapter QEMU User space emulator invocation
bellard386405f2003-03-23 21:28:45 +0000905
bellard1f673132004-04-04 15:21:17 +0000906@section Quick Start
bellard386405f2003-03-23 21:28:45 +0000907
bellard1f673132004-04-04 15:21:17 +0000908In order to launch a Linux process, QEMU needs the process executable
909itself and all the target (x86) dynamic libraries used by it.
bellard386405f2003-03-23 21:28:45 +0000910
bellard1f673132004-04-04 15:21:17 +0000911@itemize
bellard386405f2003-03-23 21:28:45 +0000912
bellard1f673132004-04-04 15:21:17 +0000913@item On x86, you can just try to launch any process by using the native
914libraries:
bellard386405f2003-03-23 21:28:45 +0000915
bellard1f673132004-04-04 15:21:17 +0000916@example
917qemu-i386 -L / /bin/ls
918@end example
bellardfd429f22003-03-30 20:59:46 +0000919
bellard1f673132004-04-04 15:21:17 +0000920@code{-L /} tells that the x86 dynamic linker must be searched with a
921@file{/} prefix.
bellard1eb20522003-06-25 16:21:49 +0000922
bellard1f673132004-04-04 15:21:17 +0000923@item Since QEMU is also a linux process, you can launch qemu with qemu (NOTE: you can only do that if you compiled QEMU from the sources):
bellard1eb20522003-06-25 16:21:49 +0000924
bellard1f673132004-04-04 15:21:17 +0000925@example
926qemu-i386 -L / qemu-i386 -L / /bin/ls
927@end example
bellard386405f2003-03-23 21:28:45 +0000928
bellard1f673132004-04-04 15:21:17 +0000929@item On non x86 CPUs, you need first to download at least an x86 glibc
930(@file{qemu-runtime-i386-XXX-.tar.gz} on the QEMU web page). Ensure that
931@code{LD_LIBRARY_PATH} is not set:
bellard386405f2003-03-23 21:28:45 +0000932
bellard1f673132004-04-04 15:21:17 +0000933@example
934unset LD_LIBRARY_PATH
935@end example
bellard386405f2003-03-23 21:28:45 +0000936
bellard1f673132004-04-04 15:21:17 +0000937Then you can launch the precompiled @file{ls} x86 executable:
bellard386405f2003-03-23 21:28:45 +0000938
bellard1f673132004-04-04 15:21:17 +0000939@example
940qemu-i386 tests/i386/ls
941@end example
942You can look at @file{qemu-binfmt-conf.sh} so that
943QEMU is automatically launched by the Linux kernel when you try to
944launch x86 executables. It requires the @code{binfmt_misc} module in the
945Linux kernel.
bellard386405f2003-03-23 21:28:45 +0000946
bellard1f673132004-04-04 15:21:17 +0000947@item The x86 version of QEMU is also included. You can try weird things such as:
948@example
949qemu-i386 /usr/local/qemu-i386/bin/qemu-i386 /usr/local/qemu-i386/bin/ls-i386
950@end example
bellard386405f2003-03-23 21:28:45 +0000951
bellard1f673132004-04-04 15:21:17 +0000952@end itemize
bellard386405f2003-03-23 21:28:45 +0000953
bellard1f673132004-04-04 15:21:17 +0000954@section Wine launch
bellard386405f2003-03-23 21:28:45 +0000955
bellard1f673132004-04-04 15:21:17 +0000956@itemize
bellard386405f2003-03-23 21:28:45 +0000957
bellard1f673132004-04-04 15:21:17 +0000958@item Ensure that you have a working QEMU with the x86 glibc
959distribution (see previous section). In order to verify it, you must be
960able to do:
bellard386405f2003-03-23 21:28:45 +0000961
bellard1f673132004-04-04 15:21:17 +0000962@example
963qemu-i386 /usr/local/qemu-i386/bin/ls-i386
964@end example
bellard386405f2003-03-23 21:28:45 +0000965
bellard1f673132004-04-04 15:21:17 +0000966@item Download the binary x86 Wine install
967(@file{qemu-XXX-i386-wine.tar.gz} on the QEMU web page).
bellard386405f2003-03-23 21:28:45 +0000968
bellard1f673132004-04-04 15:21:17 +0000969@item Configure Wine on your account. Look at the provided script
970@file{/usr/local/qemu-i386/bin/wine-conf.sh}. Your previous
971@code{$@{HOME@}/.wine} directory is saved to @code{$@{HOME@}/.wine.org}.
bellard386405f2003-03-23 21:28:45 +0000972
bellard1f673132004-04-04 15:21:17 +0000973@item Then you can try the example @file{putty.exe}:
bellard386405f2003-03-23 21:28:45 +0000974
bellard1f673132004-04-04 15:21:17 +0000975@example
976qemu-i386 /usr/local/qemu-i386/wine/bin/wine /usr/local/qemu-i386/wine/c/Program\ Files/putty.exe
977@end example
bellard386405f2003-03-23 21:28:45 +0000978
bellard1f673132004-04-04 15:21:17 +0000979@end itemize
bellard386405f2003-03-23 21:28:45 +0000980
bellard1f673132004-04-04 15:21:17 +0000981@section Command line options
bellard386405f2003-03-23 21:28:45 +0000982
bellard1f673132004-04-04 15:21:17 +0000983@example
984usage: qemu-i386 [-h] [-d] [-L path] [-s size] program [arguments...]
985@end example
bellard386405f2003-03-23 21:28:45 +0000986
bellard1f673132004-04-04 15:21:17 +0000987@table @option
988@item -h
989Print the help
990@item -L path
991Set the x86 elf interpreter prefix (default=/usr/local/qemu-i386)
992@item -s size
993Set the x86 stack size in bytes (default=524288)
bellard386405f2003-03-23 21:28:45 +0000994@end table
995
bellard1f673132004-04-04 15:21:17 +0000996Debug options:
bellard386405f2003-03-23 21:28:45 +0000997
bellard1f673132004-04-04 15:21:17 +0000998@table @option
999@item -d
1000Activate log (logfile=/tmp/qemu.log)
1001@item -p pagesize
1002Act as if the host page size was 'pagesize' bytes
1003@end table
bellard386405f2003-03-23 21:28:45 +00001004