1 \input texinfo @c -*- texinfo -*-
3 @setfilename qemu-doc.info
6 @documentencoding UTF-8
8 @settitle QEMU Emulator User Documentation
15 * QEMU: (qemu-doc). The QEMU Emulator User Documentation.
22 @center @titlefont{QEMU Emulator}
24 @center @titlefont{User Documentation}
36 * QEMU PC System emulator::
37 * QEMU System emulator for non PC targets::
38 * QEMU User space emulator::
39 * compilation:: Compilation from the sources
51 * intro_features:: Features
57 QEMU is a FAST! processor emulator using dynamic translation to
58 achieve good emulation speed.
60 QEMU has two operating modes:
63 @cindex operating modes
66 @cindex system emulation
67 Full system emulation. In this mode, QEMU emulates a full system (for
68 example a PC), including one or several processors and various
69 peripherals. It can be used to launch different Operating Systems
70 without rebooting the PC or to debug system code.
73 @cindex user mode emulation
74 User mode emulation. In this mode, QEMU can launch
75 processes compiled for one CPU on another CPU. It can be used to
76 launch the Wine Windows API emulator (@url{http://www.winehq.org}) or
77 to ease cross-compilation and cross-debugging.
81 QEMU can run without a host kernel driver and yet gives acceptable
84 For system emulation, the following hardware targets are supported:
86 @cindex emulated target systems
87 @cindex supported target systems
88 @item PC (x86 or x86_64 processor)
89 @item ISA PC (old style PC without PCI bus)
90 @item PREP (PowerPC processor)
91 @item G3 Beige PowerMac (PowerPC processor)
92 @item Mac99 PowerMac (PowerPC processor, in progress)
93 @item Sun4m/Sun4c/Sun4d (32-bit Sparc processor)
94 @item Sun4u/Sun4v (64-bit Sparc processor, in progress)
95 @item Malta board (32-bit and 64-bit MIPS processors)
96 @item MIPS Magnum (64-bit MIPS processor)
97 @item ARM Integrator/CP (ARM)
98 @item ARM Versatile baseboard (ARM)
99 @item ARM RealView Emulation/Platform baseboard (ARM)
100 @item Spitz, Akita, Borzoi, Terrier and Tosa PDAs (PXA270 processor)
101 @item Luminary Micro LM3S811EVB (ARM Cortex-M3)
102 @item Luminary Micro LM3S6965EVB (ARM Cortex-M3)
103 @item Freescale MCF5208EVB (ColdFire V2).
104 @item Arnewsh MCF5206 evaluation board (ColdFire V2).
105 @item Palm Tungsten|E PDA (OMAP310 processor)
106 @item N800 and N810 tablets (OMAP2420 processor)
107 @item MusicPal (MV88W8618 ARM processor)
108 @item Gumstix "Connex" and "Verdex" motherboards (PXA255/270).
109 @item Siemens SX1 smartphone (OMAP310 processor)
110 @item AXIS-Devboard88 (CRISv32 ETRAX-FS).
111 @item Petalogix Spartan 3aDSP1800 MMU ref design (MicroBlaze).
112 @item Avnet LX60/LX110/LX200 boards (Xtensa)
115 @cindex supported user mode targets
116 For user emulation, x86 (32 and 64 bit), PowerPC (32 and 64 bit),
117 ARM, MIPS (32 bit only), Sparc (32 and 64 bit),
118 Alpha, ColdFire(m68k), CRISv32 and MicroBlaze CPUs are supported.
121 @chapter Installation
123 If you want to compile QEMU yourself, see @ref{compilation}.
126 * install_linux:: Linux
127 * install_windows:: Windows
128 * install_mac:: Macintosh
133 @cindex installation (Linux)
135 If a precompiled package is available for your distribution - you just
136 have to install it. Otherwise, see @ref{compilation}.
138 @node install_windows
140 @cindex installation (Windows)
142 Download the experimental binary installer at
143 @url{http://www.free.oszoo.org/@/download.html}.
144 TODO (no longer available)
149 Download the experimental binary installer at
150 @url{http://www.free.oszoo.org/@/download.html}.
151 TODO (no longer available)
153 @node QEMU PC System emulator
154 @chapter QEMU PC System emulator
155 @cindex system emulation (PC)
158 * pcsys_introduction:: Introduction
159 * pcsys_quickstart:: Quick Start
160 * sec_invocation:: Invocation
162 * pcsys_monitor:: QEMU Monitor
163 * disk_images:: Disk Images
164 * pcsys_network:: Network emulation
165 * pcsys_other_devs:: Other Devices
166 * direct_linux_boot:: Direct Linux Boot
167 * pcsys_usb:: USB emulation
168 * vnc_security:: VNC security
169 * gdb_usage:: GDB usage
170 * pcsys_os_specific:: Target OS specific information
173 @node pcsys_introduction
174 @section Introduction
176 @c man begin DESCRIPTION
178 The QEMU PC System emulator simulates the
179 following peripherals:
183 i440FX host PCI bridge and PIIX3 PCI to ISA bridge
185 Cirrus CLGD 5446 PCI VGA card or dummy VGA card with Bochs VESA
186 extensions (hardware level, including all non standard modes).
188 PS/2 mouse and keyboard
190 2 PCI IDE interfaces with hard disk and CD-ROM support
194 PCI and ISA network adapters
198 Creative SoundBlaster 16 sound card
200 ENSONIQ AudioPCI ES1370 sound card
202 Intel 82801AA AC97 Audio compatible sound card
204 Intel HD Audio Controller and HDA codec
206 Adlib (OPL2) - Yamaha YM3812 compatible chip
208 Gravis Ultrasound GF1 sound card
210 CS4231A compatible sound card
212 PCI UHCI USB controller and a virtual USB hub.
215 SMP is supported with up to 255 CPUs.
217 Note that adlib, gus and cs4231a are only available when QEMU was
218 configured with --audio-card-list option containing the name(s) of
221 QEMU uses the PC BIOS from the Bochs project and the Plex86/Bochs LGPL
224 QEMU uses YM3812 emulation by Tatsuyuki Satoh.
226 QEMU uses GUS emulation (GUSEMU32 @url{http://www.deinmeister.de/gusemu/})
227 by Tibor "TS" Schütz.
229 Note that, by default, GUS shares IRQ(7) with parallel ports and so
230 QEMU must be told to not have parallel ports to have working GUS.
233 qemu-system-i386 dos.img -soundhw gus -parallel none
238 qemu-system-i386 dos.img -device gus,irq=5
241 Or some other unclaimed IRQ.
243 CS4231A is the chip used in Windows Sound System and GUSMAX products
247 @node pcsys_quickstart
251 Download and uncompress the linux image (@file{linux.img}) and type:
254 qemu-system-i386 linux.img
257 Linux should boot and give you a prompt.
263 @c man begin SYNOPSIS
264 usage: qemu-system-i386 [options] [@var{disk_image}]
269 @var{disk_image} is a raw hard disk image for IDE hard disk 0. Some
270 targets do not need a disk image.
272 @include qemu-options.texi
281 During the graphical emulation, you can use special key combinations to change
282 modes. The default key mappings are shown below, but if you use @code{-alt-grab}
283 then the modifier is Ctrl-Alt-Shift (instead of Ctrl-Alt) and if you use
284 @code{-ctrl-grab} then the modifier is the right Ctrl key (instead of Ctrl-Alt):
301 Restore the screen's un-scaled dimensions
305 Switch to virtual console 'n'. Standard console mappings are:
308 Target system display
317 Toggle mouse and keyboard grab.
323 @kindex Ctrl-PageDown
324 In the virtual consoles, you can use @key{Ctrl-Up}, @key{Ctrl-Down},
325 @key{Ctrl-PageUp} and @key{Ctrl-PageDown} to move in the back log.
328 During emulation, if you are using the @option{-nographic} option, use
329 @key{Ctrl-a h} to get terminal commands:
342 Save disk data back to file (if -snapshot)
345 Toggle console timestamps
348 Send break (magic sysrq in Linux)
351 Switch between console and monitor
361 The HTML documentation of QEMU for more precise information and Linux
362 user mode emulator invocation.
372 @section QEMU Monitor
375 The QEMU monitor is used to give complex commands to the QEMU
376 emulator. You can use it to:
381 Remove or insert removable media images
382 (such as CD-ROM or floppies).
385 Freeze/unfreeze the Virtual Machine (VM) and save or restore its state
388 @item Inspect the VM state without an external debugger.
394 The following commands are available:
396 @include qemu-monitor.texi
398 @subsection Integer expressions
400 The monitor understands integers expressions for every integer
401 argument. You can use register names to get the value of specifics
402 CPU registers by prefixing them with @emph{$}.
407 Since version 0.6.1, QEMU supports many disk image formats, including
408 growable disk images (their size increase as non empty sectors are
409 written), compressed and encrypted disk images. Version 0.8.3 added
410 the new qcow2 disk image format which is essential to support VM
414 * disk_images_quickstart:: Quick start for disk image creation
415 * disk_images_snapshot_mode:: Snapshot mode
416 * vm_snapshots:: VM snapshots
417 * qemu_img_invocation:: qemu-img Invocation
418 * qemu_nbd_invocation:: qemu-nbd Invocation
419 * disk_images_formats:: Disk image file formats
420 * host_drives:: Using host drives
421 * disk_images_fat_images:: Virtual FAT disk images
422 * disk_images_nbd:: NBD access
423 * disk_images_sheepdog:: Sheepdog disk images
424 * disk_images_iscsi:: iSCSI LUNs
425 * disk_images_gluster:: GlusterFS disk images
426 * disk_images_ssh:: Secure Shell (ssh) disk images
429 @node disk_images_quickstart
430 @subsection Quick start for disk image creation
432 You can create a disk image with the command:
434 qemu-img create myimage.img mysize
436 where @var{myimage.img} is the disk image filename and @var{mysize} is its
437 size in kilobytes. You can add an @code{M} suffix to give the size in
438 megabytes and a @code{G} suffix for gigabytes.
440 See @ref{qemu_img_invocation} for more information.
442 @node disk_images_snapshot_mode
443 @subsection Snapshot mode
445 If you use the option @option{-snapshot}, all disk images are
446 considered as read only. When sectors in written, they are written in
447 a temporary file created in @file{/tmp}. You can however force the
448 write back to the raw disk images by using the @code{commit} monitor
449 command (or @key{C-a s} in the serial console).
452 @subsection VM snapshots
454 VM snapshots are snapshots of the complete virtual machine including
455 CPU state, RAM, device state and the content of all the writable
456 disks. In order to use VM snapshots, you must have at least one non
457 removable and writable block device using the @code{qcow2} disk image
458 format. Normally this device is the first virtual hard drive.
460 Use the monitor command @code{savevm} to create a new VM snapshot or
461 replace an existing one. A human readable name can be assigned to each
462 snapshot in addition to its numerical ID.
464 Use @code{loadvm} to restore a VM snapshot and @code{delvm} to remove
465 a VM snapshot. @code{info snapshots} lists the available snapshots
466 with their associated information:
469 (qemu) info snapshots
470 Snapshot devices: hda
471 Snapshot list (from hda):
472 ID TAG VM SIZE DATE VM CLOCK
473 1 start 41M 2006-08-06 12:38:02 00:00:14.954
474 2 40M 2006-08-06 12:43:29 00:00:18.633
475 3 msys 40M 2006-08-06 12:44:04 00:00:23.514
478 A VM snapshot is made of a VM state info (its size is shown in
479 @code{info snapshots}) and a snapshot of every writable disk image.
480 The VM state info is stored in the first @code{qcow2} non removable
481 and writable block device. The disk image snapshots are stored in
482 every disk image. The size of a snapshot in a disk image is difficult
483 to evaluate and is not shown by @code{info snapshots} because the
484 associated disk sectors are shared among all the snapshots to save
485 disk space (otherwise each snapshot would need a full copy of all the
488 When using the (unrelated) @code{-snapshot} option
489 (@ref{disk_images_snapshot_mode}), you can always make VM snapshots,
490 but they are deleted as soon as you exit QEMU.
492 VM snapshots currently have the following known limitations:
495 They cannot cope with removable devices if they are removed or
496 inserted after a snapshot is done.
498 A few device drivers still have incomplete snapshot support so their
499 state is not saved or restored properly (in particular USB).
502 @node qemu_img_invocation
503 @subsection @code{qemu-img} Invocation
505 @include qemu-img.texi
507 @node qemu_nbd_invocation
508 @subsection @code{qemu-nbd} Invocation
510 @include qemu-nbd.texi
512 @node disk_images_formats
513 @subsection Disk image file formats
515 QEMU supports many image file formats that can be used with VMs as well as with
516 any of the tools (like @code{qemu-img}). This includes the preferred formats
517 raw and qcow2 as well as formats that are supported for compatibility with
518 older QEMU versions or other hypervisors.
520 Depending on the image format, different options can be passed to
521 @code{qemu-img create} and @code{qemu-img convert} using the @code{-o} option.
522 This section describes each format and the options that are supported for it.
527 Raw disk image format. This format has the advantage of
528 being simple and easily exportable to all other emulators. If your
529 file system supports @emph{holes} (for example in ext2 or ext3 on
530 Linux or NTFS on Windows), then only the written sectors will reserve
531 space. Use @code{qemu-img info} to know the real size used by the
532 image or @code{ls -ls} on Unix/Linux.
535 QEMU image format, the most versatile format. Use it to have smaller
536 images (useful if your filesystem does not supports holes, for example
537 on Windows), optional AES encryption, zlib based compression and
538 support of multiple VM snapshots.
543 Determines the qcow2 version to use. @code{compat=0.10} uses the traditional
544 image format that can be read by any QEMU since 0.10 (this is the default).
545 @code{compat=1.1} enables image format extensions that only QEMU 1.1 and
546 newer understand. Amongst others, this includes zero clusters, which allow
547 efficient copy-on-read for sparse images.
550 File name of a base image (see @option{create} subcommand)
552 Image format of the base image
554 If this option is set to @code{on}, the image is encrypted.
556 Encryption uses the AES format which is very secure (128 bit keys). Use
557 a long password (16 characters) to get maximum protection.
560 Changes the qcow2 cluster size (must be between 512 and 2M). Smaller cluster
561 sizes can improve the image file size whereas larger cluster sizes generally
562 provide better performance.
565 Preallocation mode (allowed values: off, metadata). An image with preallocated
566 metadata is initially larger but can improve performance when the image needs
570 If this option is set to @code{on}, reference count updates are postponed with
571 the goal of avoiding metadata I/O and improving performance. This is
572 particularly interesting with @option{cache=writethrough} which doesn't batch
573 metadata updates. The tradeoff is that after a host crash, the reference count
574 tables must be rebuilt, i.e. on the next open an (automatic) @code{qemu-img
575 check -r all} is required, which may take some time.
577 This option can only be enabled if @code{compat=1.1} is specified.
582 Old QEMU image format with support for backing files and compact image files
583 (when your filesystem or transport medium does not support holes).
585 When converting QED images to qcow2, you might want to consider using the
586 @code{lazy_refcounts=on} option to get a more QED-like behaviour.
591 File name of a base image (see @option{create} subcommand).
593 Image file format of backing file (optional). Useful if the format cannot be
594 autodetected because it has no header, like some vhd/vpc files.
596 Changes the cluster size (must be power-of-2 between 4K and 64K). Smaller
597 cluster sizes can improve the image file size whereas larger cluster sizes
598 generally provide better performance.
600 Changes the number of clusters per L1/L2 table (must be power-of-2 between 1
601 and 16). There is normally no need to change this value but this option can be
602 used for performance benchmarking.
606 Old QEMU image format with support for backing files, compact image files,
607 encryption and compression.
612 File name of a base image (see @option{create} subcommand)
614 If this option is set to @code{on}, the image is encrypted.
618 User Mode Linux Copy On Write image format. It is supported only for
619 compatibility with previous versions.
623 File name of a base image (see @option{create} subcommand)
627 VirtualBox 1.1 compatible image format.
631 If this option is set to @code{on}, the image is created with metadata
636 VMware 3 and 4 compatible image format.
641 File name of a base image (see @option{create} subcommand).
643 Create a VMDK version 6 image (instead of version 4)
645 Specifies which VMDK subformat to use. Valid options are
646 @code{monolithicSparse} (default),
647 @code{monolithicFlat},
648 @code{twoGbMaxExtentSparse},
649 @code{twoGbMaxExtentFlat} and
650 @code{streamOptimized}.
654 VirtualPC compatible image format (VHD).
658 Specifies which VHD subformat to use. Valid options are
659 @code{dynamic} (default) and @code{fixed}.
663 @subsubsection Read-only formats
664 More disk image file formats are supported in a read-only mode.
667 Bochs images of @code{growing} type.
669 Linux Compressed Loop image, useful only to reuse directly compressed
670 CD-ROM images present for example in the Knoppix CD-ROMs.
674 Parallels disk image format.
679 @subsection Using host drives
681 In addition to disk image files, QEMU can directly access host
682 devices. We describe here the usage for QEMU version >= 0.8.3.
686 On Linux, you can directly use the host device filename instead of a
687 disk image filename provided you have enough privileges to access
688 it. For example, use @file{/dev/cdrom} to access to the CDROM or
689 @file{/dev/fd0} for the floppy.
693 You can specify a CDROM device even if no CDROM is loaded. QEMU has
694 specific code to detect CDROM insertion or removal. CDROM ejection by
695 the guest OS is supported. Currently only data CDs are supported.
697 You can specify a floppy device even if no floppy is loaded. Floppy
698 removal is currently not detected accurately (if you change floppy
699 without doing floppy access while the floppy is not loaded, the guest
700 OS will think that the same floppy is loaded).
702 Hard disks can be used. Normally you must specify the whole disk
703 (@file{/dev/hdb} instead of @file{/dev/hdb1}) so that the guest OS can
704 see it as a partitioned disk. WARNING: unless you know what you do, it
705 is better to only make READ-ONLY accesses to the hard disk otherwise
706 you may corrupt your host data (use the @option{-snapshot} command
707 line option or modify the device permissions accordingly).
710 @subsubsection Windows
714 The preferred syntax is the drive letter (e.g. @file{d:}). The
715 alternate syntax @file{\\.\d:} is supported. @file{/dev/cdrom} is
716 supported as an alias to the first CDROM drive.
718 Currently there is no specific code to handle removable media, so it
719 is better to use the @code{change} or @code{eject} monitor commands to
720 change or eject media.
722 Hard disks can be used with the syntax: @file{\\.\PhysicalDrive@var{N}}
723 where @var{N} is the drive number (0 is the first hard disk).
725 WARNING: unless you know what you do, it is better to only make
726 READ-ONLY accesses to the hard disk otherwise you may corrupt your
727 host data (use the @option{-snapshot} command line so that the
728 modifications are written in a temporary file).
732 @subsubsection Mac OS X
734 @file{/dev/cdrom} is an alias to the first CDROM.
736 Currently there is no specific code to handle removable media, so it
737 is better to use the @code{change} or @code{eject} monitor commands to
738 change or eject media.
740 @node disk_images_fat_images
741 @subsection Virtual FAT disk images
743 QEMU can automatically create a virtual FAT disk image from a
744 directory tree. In order to use it, just type:
747 qemu-system-i386 linux.img -hdb fat:/my_directory
750 Then you access access to all the files in the @file{/my_directory}
751 directory without having to copy them in a disk image or to export
752 them via SAMBA or NFS. The default access is @emph{read-only}.
754 Floppies can be emulated with the @code{:floppy:} option:
757 qemu-system-i386 linux.img -fda fat:floppy:/my_directory
760 A read/write support is available for testing (beta stage) with the
764 qemu-system-i386 linux.img -fda fat:floppy:rw:/my_directory
767 What you should @emph{never} do:
769 @item use non-ASCII filenames ;
770 @item use "-snapshot" together with ":rw:" ;
771 @item expect it to work when loadvm'ing ;
772 @item write to the FAT directory on the host system while accessing it with the guest system.
775 @node disk_images_nbd
776 @subsection NBD access
778 QEMU can access directly to block device exported using the Network Block Device
782 qemu-system-i386 linux.img -hdb nbd://my_nbd_server.mydomain.org:1024/
785 If the NBD server is located on the same host, you can use an unix socket instead
789 qemu-system-i386 linux.img -hdb nbd+unix://?socket=/tmp/my_socket
792 In this case, the block device must be exported using qemu-nbd:
795 qemu-nbd --socket=/tmp/my_socket my_disk.qcow2
798 The use of qemu-nbd allows to share a disk between several guests:
800 qemu-nbd --socket=/tmp/my_socket --share=2 my_disk.qcow2
804 and then you can use it with two guests:
806 qemu-system-i386 linux1.img -hdb nbd+unix://?socket=/tmp/my_socket
807 qemu-system-i386 linux2.img -hdb nbd+unix://?socket=/tmp/my_socket
810 If the nbd-server uses named exports (supported since NBD 2.9.18, or with QEMU's
811 own embedded NBD server), you must specify an export name in the URI:
813 qemu-system-i386 -cdrom nbd://localhost/debian-500-ppc-netinst
814 qemu-system-i386 -cdrom nbd://localhost/openSUSE-11.1-ppc-netinst
817 The URI syntax for NBD is supported since QEMU 1.3. An alternative syntax is
818 also available. Here are some example of the older syntax:
820 qemu-system-i386 linux.img -hdb nbd:my_nbd_server.mydomain.org:1024
821 qemu-system-i386 linux2.img -hdb nbd:unix:/tmp/my_socket
822 qemu-system-i386 -cdrom nbd:localhost:10809:exportname=debian-500-ppc-netinst
825 @node disk_images_sheepdog
826 @subsection Sheepdog disk images
828 Sheepdog is a distributed storage system for QEMU. It provides highly
829 available block level storage volumes that can be attached to
830 QEMU-based virtual machines.
832 You can create a Sheepdog disk image with the command:
834 qemu-img create sheepdog:///@var{image} @var{size}
836 where @var{image} is the Sheepdog image name and @var{size} is its
839 To import the existing @var{filename} to Sheepdog, you can use a
842 qemu-img convert @var{filename} sheepdog:///@var{image}
845 You can boot from the Sheepdog disk image with the command:
847 qemu-system-i386 sheepdog:///@var{image}
850 You can also create a snapshot of the Sheepdog image like qcow2.
852 qemu-img snapshot -c @var{tag} sheepdog:///@var{image}
854 where @var{tag} is a tag name of the newly created snapshot.
856 To boot from the Sheepdog snapshot, specify the tag name of the
859 qemu-system-i386 sheepdog:///@var{image}#@var{tag}
862 You can create a cloned image from the existing snapshot.
864 qemu-img create -b sheepdog:///@var{base}#@var{tag} sheepdog:///@var{image}
866 where @var{base} is a image name of the source snapshot and @var{tag}
869 You can use an unix socket instead of an inet socket:
872 qemu-system-i386 sheepdog+unix:///@var{image}?socket=@var{path}
875 If the Sheepdog daemon doesn't run on the local host, you need to
876 specify one of the Sheepdog servers to connect to.
878 qemu-img create sheepdog://@var{hostname}:@var{port}/@var{image} @var{size}
879 qemu-system-i386 sheepdog://@var{hostname}:@var{port}/@var{image}
882 @node disk_images_iscsi
883 @subsection iSCSI LUNs
885 iSCSI is a popular protocol used to access SCSI devices across a computer
888 There are two different ways iSCSI devices can be used by QEMU.
890 The first method is to mount the iSCSI LUN on the host, and make it appear as
891 any other ordinary SCSI device on the host and then to access this device as a
892 /dev/sd device from QEMU. How to do this differs between host OSes.
894 The second method involves using the iSCSI initiator that is built into
895 QEMU. This provides a mechanism that works the same way regardless of which
896 host OS you are running QEMU on. This section will describe this second method
897 of using iSCSI together with QEMU.
899 In QEMU, iSCSI devices are described using special iSCSI URLs
903 iscsi://[<username>[%<password>]@@]<host>[:<port>]/<target-iqn-name>/<lun>
906 Username and password are optional and only used if your target is set up
907 using CHAP authentication for access control.
908 Alternatively the username and password can also be set via environment
909 variables to have these not show up in the process list
912 export LIBISCSI_CHAP_USERNAME=<username>
913 export LIBISCSI_CHAP_PASSWORD=<password>
914 iscsi://<host>/<target-iqn-name>/<lun>
917 Various session related parameters can be set via special options, either
918 in a configuration file provided via '-readconfig' or directly on the
921 If the initiator-name is not specified qemu will use a default name
922 of 'iqn.2008-11.org.linux-kvm[:<name>'] where <name> is the name of the
927 Setting a specific initiator name to use when logging in to the target
928 -iscsi initiator-name=iqn.qemu.test:my-initiator
932 Controlling which type of header digest to negotiate with the target
933 -iscsi header-digest=CRC32C|CRC32C-NONE|NONE-CRC32C|NONE
936 These can also be set via a configuration file
939 user = "CHAP username"
940 password = "CHAP password"
941 initiator-name = "iqn.qemu.test:my-initiator"
942 # header digest is one of CRC32C|CRC32C-NONE|NONE-CRC32C|NONE
943 header-digest = "CRC32C"
947 Setting the target name allows different options for different targets
949 [iscsi "iqn.target.name"]
950 user = "CHAP username"
951 password = "CHAP password"
952 initiator-name = "iqn.qemu.test:my-initiator"
953 # header digest is one of CRC32C|CRC32C-NONE|NONE-CRC32C|NONE
954 header-digest = "CRC32C"
958 Howto use a configuration file to set iSCSI configuration options:
960 cat >iscsi.conf <<EOF
963 password = "my password"
964 initiator-name = "iqn.qemu.test:my-initiator"
965 header-digest = "CRC32C"
968 qemu-system-i386 -drive file=iscsi://127.0.0.1/iqn.qemu.test/1 \
969 -readconfig iscsi.conf
973 Howto set up a simple iSCSI target on loopback and accessing it via QEMU:
975 This example shows how to set up an iSCSI target with one CDROM and one DISK
976 using the Linux STGT software target. This target is available on Red Hat based
977 systems as the package 'scsi-target-utils'.
979 tgtd --iscsi portal=127.0.0.1:3260
980 tgtadm --lld iscsi --op new --mode target --tid 1 -T iqn.qemu.test
981 tgtadm --lld iscsi --mode logicalunit --op new --tid 1 --lun 1 \
982 -b /IMAGES/disk.img --device-type=disk
983 tgtadm --lld iscsi --mode logicalunit --op new --tid 1 --lun 2 \
984 -b /IMAGES/cd.iso --device-type=cd
985 tgtadm --lld iscsi --op bind --mode target --tid 1 -I ALL
987 qemu-system-i386 -iscsi initiator-name=iqn.qemu.test:my-initiator \
988 -boot d -drive file=iscsi://127.0.0.1/iqn.qemu.test/1 \
989 -cdrom iscsi://127.0.0.1/iqn.qemu.test/2
992 @node disk_images_gluster
993 @subsection GlusterFS disk images
995 GlusterFS is an user space distributed file system.
997 You can boot from the GlusterFS disk image with the command:
999 qemu-system-x86_64 -drive file=gluster[+@var{transport}]://[@var{server}[:@var{port}]]/@var{volname}/@var{image}[?socket=...]
1002 @var{gluster} is the protocol.
1004 @var{transport} specifies the transport type used to connect to gluster
1005 management daemon (glusterd). Valid transport types are
1006 tcp, unix and rdma. If a transport type isn't specified, then tcp
1009 @var{server} specifies the server where the volume file specification for
1010 the given volume resides. This can be either hostname, ipv4 address
1011 or ipv6 address. ipv6 address needs to be within square brackets [ ].
1012 If transport type is unix, then @var{server} field should not be specifed.
1013 Instead @var{socket} field needs to be populated with the path to unix domain
1016 @var{port} is the port number on which glusterd is listening. This is optional
1017 and if not specified, QEMU will send 0 which will make gluster to use the
1018 default port. If the transport type is unix, then @var{port} should not be
1021 @var{volname} is the name of the gluster volume which contains the disk image.
1023 @var{image} is the path to the actual disk image that resides on gluster volume.
1025 You can create a GlusterFS disk image with the command:
1027 qemu-img create gluster://@var{server}/@var{volname}/@var{image} @var{size}
1032 qemu-system-x86_64 -drive file=gluster://1.2.3.4/testvol/a.img
1033 qemu-system-x86_64 -drive file=gluster+tcp://1.2.3.4/testvol/a.img
1034 qemu-system-x86_64 -drive file=gluster+tcp://1.2.3.4:24007/testvol/dir/a.img
1035 qemu-system-x86_64 -drive file=gluster+tcp://[1:2:3:4:5:6:7:8]/testvol/dir/a.img
1036 qemu-system-x86_64 -drive file=gluster+tcp://[1:2:3:4:5:6:7:8]:24007/testvol/dir/a.img
1037 qemu-system-x86_64 -drive file=gluster+tcp://server.domain.com:24007/testvol/dir/a.img
1038 qemu-system-x86_64 -drive file=gluster+unix:///testvol/dir/a.img?socket=/tmp/glusterd.socket
1039 qemu-system-x86_64 -drive file=gluster+rdma://1.2.3.4:24007/testvol/a.img
1042 @node disk_images_ssh
1043 @subsection Secure Shell (ssh) disk images
1045 You can access disk images located on a remote ssh server
1046 by using the ssh protocol:
1049 qemu-system-x86_64 -drive file=ssh://[@var{user}@@]@var{server}[:@var{port}]/@var{path}[?host_key_check=@var{host_key_check}]
1052 Alternative syntax using properties:
1055 qemu-system-x86_64 -drive file.driver=ssh[,file.user=@var{user}],file.host=@var{server}[,file.port=@var{port}],file.path=@var{path}[,file.host_key_check=@var{host_key_check}]
1058 @var{ssh} is the protocol.
1060 @var{user} is the remote user. If not specified, then the local
1063 @var{server} specifies the remote ssh server. Any ssh server can be
1064 used, but it must implement the sftp-server protocol. Most Unix/Linux
1065 systems should work without requiring any extra configuration.
1067 @var{port} is the port number on which sshd is listening. By default
1068 the standard ssh port (22) is used.
1070 @var{path} is the path to the disk image.
1072 The optional @var{host_key_check} parameter controls how the remote
1073 host's key is checked. The default is @code{yes} which means to use
1074 the local @file{.ssh/known_hosts} file. Setting this to @code{no}
1075 turns off known-hosts checking. Or you can check that the host key
1076 matches a specific fingerprint:
1077 @code{host_key_check=md5:78:45:8e:14:57:4f:d5:45:83:0a:0e:f3:49:82:c9:c8}
1078 (@code{sha1:} can also be used as a prefix, but note that OpenSSH
1079 tools only use MD5 to print fingerprints).
1081 Currently authentication must be done using ssh-agent. Other
1082 authentication methods may be supported in future.
1084 Note: Many ssh servers do not support an @code{fsync}-style operation.
1085 The ssh driver cannot guarantee that disk flush requests are
1086 obeyed, and this causes a risk of disk corruption if the remote
1087 server or network goes down during writes. The driver will
1088 print a warning when @code{fsync} is not supported:
1090 warning: ssh server @code{ssh.example.com:22} does not support fsync
1092 With sufficiently new versions of libssh2 and OpenSSH, @code{fsync} is
1096 @section Network emulation
1098 QEMU can simulate several network cards (PCI or ISA cards on the PC
1099 target) and can connect them to an arbitrary number of Virtual Local
1100 Area Networks (VLANs). Host TAP devices can be connected to any QEMU
1101 VLAN. VLAN can be connected between separate instances of QEMU to
1102 simulate large networks. For simpler usage, a non privileged user mode
1103 network stack can replace the TAP device to have a basic network
1108 QEMU simulates several VLANs. A VLAN can be symbolised as a virtual
1109 connection between several network devices. These devices can be for
1110 example QEMU virtual Ethernet cards or virtual Host ethernet devices
1113 @subsection Using TAP network interfaces
1115 This is the standard way to connect QEMU to a real network. QEMU adds
1116 a virtual network device on your host (called @code{tapN}), and you
1117 can then configure it as if it was a real ethernet card.
1119 @subsubsection Linux host
1121 As an example, you can download the @file{linux-test-xxx.tar.gz}
1122 archive and copy the script @file{qemu-ifup} in @file{/etc} and
1123 configure properly @code{sudo} so that the command @code{ifconfig}
1124 contained in @file{qemu-ifup} can be executed as root. You must verify
1125 that your host kernel supports the TAP network interfaces: the
1126 device @file{/dev/net/tun} must be present.
1128 See @ref{sec_invocation} to have examples of command lines using the
1129 TAP network interfaces.
1131 @subsubsection Windows host
1133 There is a virtual ethernet driver for Windows 2000/XP systems, called
1134 TAP-Win32. But it is not included in standard QEMU for Windows,
1135 so you will need to get it separately. It is part of OpenVPN package,
1136 so download OpenVPN from : @url{http://openvpn.net/}.
1138 @subsection Using the user mode network stack
1140 By using the option @option{-net user} (default configuration if no
1141 @option{-net} option is specified), QEMU uses a completely user mode
1142 network stack (you don't need root privilege to use the virtual
1143 network). The virtual network configuration is the following:
1147 QEMU VLAN <------> Firewall/DHCP server <-----> Internet
1150 ----> DNS server (10.0.2.3)
1152 ----> SMB server (10.0.2.4)
1155 The QEMU VM behaves as if it was behind a firewall which blocks all
1156 incoming connections. You can use a DHCP client to automatically
1157 configure the network in the QEMU VM. The DHCP server assign addresses
1158 to the hosts starting from 10.0.2.15.
1160 In order to check that the user mode network is working, you can ping
1161 the address 10.0.2.2 and verify that you got an address in the range
1162 10.0.2.x from the QEMU virtual DHCP server.
1164 Note that @code{ping} is not supported reliably to the internet as it
1165 would require root privileges. It means you can only ping the local
1168 When using the built-in TFTP server, the router is also the TFTP
1171 When using the @option{-redir} option, TCP or UDP connections can be
1172 redirected from the host to the guest. It allows for example to
1173 redirect X11, telnet or SSH connections.
1175 @subsection Connecting VLANs between QEMU instances
1177 Using the @option{-net socket} option, it is possible to make VLANs
1178 that span several QEMU instances. See @ref{sec_invocation} to have a
1181 @node pcsys_other_devs
1182 @section Other Devices
1184 @subsection Inter-VM Shared Memory device
1186 With KVM enabled on a Linux host, a shared memory device is available. Guests
1187 map a POSIX shared memory region into the guest as a PCI device that enables
1188 zero-copy communication to the application level of the guests. The basic
1192 qemu-system-i386 -device ivshmem,size=<size in format accepted by -m>[,shm=<shm name>]
1195 If desired, interrupts can be sent between guest VMs accessing the same shared
1196 memory region. Interrupt support requires using a shared memory server and
1197 using a chardev socket to connect to it. The code for the shared memory server
1198 is qemu.git/contrib/ivshmem-server. An example syntax when using the shared
1202 qemu-system-i386 -device ivshmem,size=<size in format accepted by -m>[,chardev=<id>]
1203 [,msi=on][,ioeventfd=on][,vectors=n][,role=peer|master]
1204 qemu-system-i386 -chardev socket,path=<path>,id=<id>
1207 When using the server, the guest will be assigned a VM ID (>=0) that allows guests
1208 using the same server to communicate via interrupts. Guests can read their
1209 VM ID from a device register (see example code). Since receiving the shared
1210 memory region from the server is asynchronous, there is a (small) chance the
1211 guest may boot before the shared memory is attached. To allow an application
1212 to ensure shared memory is attached, the VM ID register will return -1 (an
1213 invalid VM ID) until the memory is attached. Once the shared memory is
1214 attached, the VM ID will return the guest's valid VM ID. With these semantics,
1215 the guest application can check to ensure the shared memory is attached to the
1216 guest before proceeding.
1218 The @option{role} argument can be set to either master or peer and will affect
1219 how the shared memory is migrated. With @option{role=master}, the guest will
1220 copy the shared memory on migration to the destination host. With
1221 @option{role=peer}, the guest will not be able to migrate with the device attached.
1222 With the @option{peer} case, the device should be detached and then reattached
1223 after migration using the PCI hotplug support.
1225 @node direct_linux_boot
1226 @section Direct Linux Boot
1228 This section explains how to launch a Linux kernel inside QEMU without
1229 having to make a full bootable image. It is very useful for fast Linux
1234 qemu-system-i386 -kernel arch/i386/boot/bzImage -hda root-2.4.20.img -append "root=/dev/hda"
1237 Use @option{-kernel} to provide the Linux kernel image and
1238 @option{-append} to give the kernel command line arguments. The
1239 @option{-initrd} option can be used to provide an INITRD image.
1241 When using the direct Linux boot, a disk image for the first hard disk
1242 @file{hda} is required because its boot sector is used to launch the
1245 If you do not need graphical output, you can disable it and redirect
1246 the virtual serial port and the QEMU monitor to the console with the
1247 @option{-nographic} option. The typical command line is:
1249 qemu-system-i386 -kernel arch/i386/boot/bzImage -hda root-2.4.20.img \
1250 -append "root=/dev/hda console=ttyS0" -nographic
1253 Use @key{Ctrl-a c} to switch between the serial console and the
1254 monitor (@pxref{pcsys_keys}).
1257 @section USB emulation
1259 QEMU emulates a PCI UHCI USB controller. You can virtually plug
1260 virtual USB devices or real host USB devices (experimental, works only
1261 on Linux hosts). QEMU will automatically create and connect virtual USB hubs
1262 as necessary to connect multiple USB devices.
1266 * host_usb_devices::
1269 @subsection Connecting USB devices
1271 USB devices can be connected with the @option{-usbdevice} commandline option
1272 or the @code{usb_add} monitor command. Available devices are:
1276 Virtual Mouse. This will override the PS/2 mouse emulation when activated.
1278 Pointer device that uses absolute coordinates (like a touchscreen).
1279 This means QEMU is able to report the mouse position without having
1280 to grab the mouse. Also overrides the PS/2 mouse emulation when activated.
1281 @item disk:@var{file}
1282 Mass storage device based on @var{file} (@pxref{disk_images})
1283 @item host:@var{bus.addr}
1284 Pass through the host device identified by @var{bus.addr}
1286 @item host:@var{vendor_id:product_id}
1287 Pass through the host device identified by @var{vendor_id:product_id}
1290 Virtual Wacom PenPartner tablet. This device is similar to the @code{tablet}
1291 above but it can be used with the tslib library because in addition to touch
1292 coordinates it reports touch pressure.
1294 Standard USB keyboard. Will override the PS/2 keyboard (if present).
1295 @item serial:[vendorid=@var{vendor_id}][,product_id=@var{product_id}]:@var{dev}
1296 Serial converter. This emulates an FTDI FT232BM chip connected to host character
1297 device @var{dev}. The available character devices are the same as for the
1298 @code{-serial} option. The @code{vendorid} and @code{productid} options can be
1299 used to override the default 0403:6001. For instance,
1301 usb_add serial:productid=FA00:tcp:192.168.0.2:4444
1303 will connect to tcp port 4444 of ip 192.168.0.2, and plug that to the virtual
1304 serial converter, faking a Matrix Orbital LCD Display (USB ID 0403:FA00).
1306 Braille device. This will use BrlAPI to display the braille output on a real
1308 @item net:@var{options}
1309 Network adapter that supports CDC ethernet and RNDIS protocols. @var{options}
1310 specifies NIC options as with @code{-net nic,}@var{options} (see description).
1311 For instance, user-mode networking can be used with
1313 qemu-system-i386 [...OPTIONS...] -net user,vlan=0 -usbdevice net:vlan=0
1315 Currently this cannot be used in machines that support PCI NICs.
1316 @item bt[:@var{hci-type}]
1317 Bluetooth dongle whose type is specified in the same format as with
1318 the @option{-bt hci} option, @pxref{bt-hcis,,allowed HCI types}. If
1319 no type is given, the HCI logic corresponds to @code{-bt hci,vlan=0}.
1320 This USB device implements the USB Transport Layer of HCI. Example
1323 qemu-system-i386 [...OPTIONS...] -usbdevice bt:hci,vlan=3 -bt device:keyboard,vlan=3
1327 @node host_usb_devices
1328 @subsection Using host USB devices on a Linux host
1330 WARNING: this is an experimental feature. QEMU will slow down when
1331 using it. USB devices requiring real time streaming (i.e. USB Video
1332 Cameras) are not supported yet.
1335 @item If you use an early Linux 2.4 kernel, verify that no Linux driver
1336 is actually using the USB device. A simple way to do that is simply to
1337 disable the corresponding kernel module by renaming it from @file{mydriver.o}
1338 to @file{mydriver.o.disabled}.
1340 @item Verify that @file{/proc/bus/usb} is working (most Linux distributions should enable it by default). You should see something like that:
1346 @item Since only root can access to the USB devices directly, you can either launch QEMU as root or change the permissions of the USB devices you want to use. For testing, the following suffices:
1348 chown -R myuid /proc/bus/usb
1351 @item Launch QEMU and do in the monitor:
1354 Device 1.2, speed 480 Mb/s
1355 Class 00: USB device 1234:5678, USB DISK
1357 You should see the list of the devices you can use (Never try to use
1358 hubs, it won't work).
1360 @item Add the device in QEMU by using:
1362 usb_add host:1234:5678
1365 Normally the guest OS should report that a new USB device is
1366 plugged. You can use the option @option{-usbdevice} to do the same.
1368 @item Now you can try to use the host USB device in QEMU.
1372 When relaunching QEMU, you may have to unplug and plug again the USB
1373 device to make it work again (this is a bug).
1376 @section VNC security
1378 The VNC server capability provides access to the graphical console
1379 of the guest VM across the network. This has a number of security
1380 considerations depending on the deployment scenarios.
1384 * vnc_sec_password::
1385 * vnc_sec_certificate::
1386 * vnc_sec_certificate_verify::
1387 * vnc_sec_certificate_pw::
1389 * vnc_sec_certificate_sasl::
1390 * vnc_generate_cert::
1394 @subsection Without passwords
1396 The simplest VNC server setup does not include any form of authentication.
1397 For this setup it is recommended to restrict it to listen on a UNIX domain
1398 socket only. For example
1401 qemu-system-i386 [...OPTIONS...] -vnc unix:/home/joebloggs/.qemu-myvm-vnc
1404 This ensures that only users on local box with read/write access to that
1405 path can access the VNC server. To securely access the VNC server from a
1406 remote machine, a combination of netcat+ssh can be used to provide a secure
1409 @node vnc_sec_password
1410 @subsection With passwords
1412 The VNC protocol has limited support for password based authentication. Since
1413 the protocol limits passwords to 8 characters it should not be considered
1414 to provide high security. The password can be fairly easily brute-forced by
1415 a client making repeat connections. For this reason, a VNC server using password
1416 authentication should be restricted to only listen on the loopback interface
1417 or UNIX domain sockets. Password authentication is not supported when operating
1418 in FIPS 140-2 compliance mode as it requires the use of the DES cipher. Password
1419 authentication is requested with the @code{password} option, and then once QEMU
1420 is running the password is set with the monitor. Until the monitor is used to
1421 set the password all clients will be rejected.
1424 qemu-system-i386 [...OPTIONS...] -vnc :1,password -monitor stdio
1425 (qemu) change vnc password
1430 @node vnc_sec_certificate
1431 @subsection With x509 certificates
1433 The QEMU VNC server also implements the VeNCrypt extension allowing use of
1434 TLS for encryption of the session, and x509 certificates for authentication.
1435 The use of x509 certificates is strongly recommended, because TLS on its
1436 own is susceptible to man-in-the-middle attacks. Basic x509 certificate
1437 support provides a secure session, but no authentication. This allows any
1438 client to connect, and provides an encrypted session.
1441 qemu-system-i386 [...OPTIONS...] -vnc :1,tls,x509=/etc/pki/qemu -monitor stdio
1444 In the above example @code{/etc/pki/qemu} should contain at least three files,
1445 @code{ca-cert.pem}, @code{server-cert.pem} and @code{server-key.pem}. Unprivileged
1446 users will want to use a private directory, for example @code{$HOME/.pki/qemu}.
1447 NB the @code{server-key.pem} file should be protected with file mode 0600 to
1448 only be readable by the user owning it.
1450 @node vnc_sec_certificate_verify
1451 @subsection With x509 certificates and client verification
1453 Certificates can also provide a means to authenticate the client connecting.
1454 The server will request that the client provide a certificate, which it will
1455 then validate against the CA certificate. This is a good choice if deploying
1456 in an environment with a private internal certificate authority.
1459 qemu-system-i386 [...OPTIONS...] -vnc :1,tls,x509verify=/etc/pki/qemu -monitor stdio
1463 @node vnc_sec_certificate_pw
1464 @subsection With x509 certificates, client verification and passwords
1466 Finally, the previous method can be combined with VNC password authentication
1467 to provide two layers of authentication for clients.
1470 qemu-system-i386 [...OPTIONS...] -vnc :1,password,tls,x509verify=/etc/pki/qemu -monitor stdio
1471 (qemu) change vnc password
1478 @subsection With SASL authentication
1480 The SASL authentication method is a VNC extension, that provides an
1481 easily extendable, pluggable authentication method. This allows for
1482 integration with a wide range of authentication mechanisms, such as
1483 PAM, GSSAPI/Kerberos, LDAP, SQL databases, one-time keys and more.
1484 The strength of the authentication depends on the exact mechanism
1485 configured. If the chosen mechanism also provides a SSF layer, then
1486 it will encrypt the datastream as well.
1488 Refer to the later docs on how to choose the exact SASL mechanism
1489 used for authentication, but assuming use of one supporting SSF,
1490 then QEMU can be launched with:
1493 qemu-system-i386 [...OPTIONS...] -vnc :1,sasl -monitor stdio
1496 @node vnc_sec_certificate_sasl
1497 @subsection With x509 certificates and SASL authentication
1499 If the desired SASL authentication mechanism does not supported
1500 SSF layers, then it is strongly advised to run it in combination
1501 with TLS and x509 certificates. This provides securely encrypted
1502 data stream, avoiding risk of compromising of the security
1503 credentials. This can be enabled, by combining the 'sasl' option
1504 with the aforementioned TLS + x509 options:
1507 qemu-system-i386 [...OPTIONS...] -vnc :1,tls,x509,sasl -monitor stdio
1511 @node vnc_generate_cert
1512 @subsection Generating certificates for VNC
1514 The GNU TLS packages provides a command called @code{certtool} which can
1515 be used to generate certificates and keys in PEM format. At a minimum it
1516 is necessary to setup a certificate authority, and issue certificates to
1517 each server. If using certificates for authentication, then each client
1518 will also need to be issued a certificate. The recommendation is for the
1519 server to keep its certificates in either @code{/etc/pki/qemu} or for
1520 unprivileged users in @code{$HOME/.pki/qemu}.
1524 * vnc_generate_server::
1525 * vnc_generate_client::
1527 @node vnc_generate_ca
1528 @subsubsection Setup the Certificate Authority
1530 This step only needs to be performed once per organization / organizational
1531 unit. First the CA needs a private key. This key must be kept VERY secret
1532 and secure. If this key is compromised the entire trust chain of the certificates
1533 issued with it is lost.
1536 # certtool --generate-privkey > ca-key.pem
1539 A CA needs to have a public certificate. For simplicity it can be a self-signed
1540 certificate, or one issue by a commercial certificate issuing authority. To
1541 generate a self-signed certificate requires one core piece of information, the
1542 name of the organization.
1545 # cat > ca.info <<EOF
1546 cn = Name of your organization
1550 # certtool --generate-self-signed \
1551 --load-privkey ca-key.pem
1552 --template ca.info \
1553 --outfile ca-cert.pem
1556 The @code{ca-cert.pem} file should be copied to all servers and clients wishing to utilize
1557 TLS support in the VNC server. The @code{ca-key.pem} must not be disclosed/copied at all.
1559 @node vnc_generate_server
1560 @subsubsection Issuing server certificates
1562 Each server (or host) needs to be issued with a key and certificate. When connecting
1563 the certificate is sent to the client which validates it against the CA certificate.
1564 The core piece of information for a server certificate is the hostname. This should
1565 be the fully qualified hostname that the client will connect with, since the client
1566 will typically also verify the hostname in the certificate. On the host holding the
1567 secure CA private key:
1570 # cat > server.info <<EOF
1571 organization = Name of your organization
1572 cn = server.foo.example.com
1577 # certtool --generate-privkey > server-key.pem
1578 # certtool --generate-certificate \
1579 --load-ca-certificate ca-cert.pem \
1580 --load-ca-privkey ca-key.pem \
1581 --load-privkey server server-key.pem \
1582 --template server.info \
1583 --outfile server-cert.pem
1586 The @code{server-key.pem} and @code{server-cert.pem} files should now be securely copied
1587 to the server for which they were generated. The @code{server-key.pem} is security
1588 sensitive and should be kept protected with file mode 0600 to prevent disclosure.
1590 @node vnc_generate_client
1591 @subsubsection Issuing client certificates
1593 If the QEMU VNC server is to use the @code{x509verify} option to validate client
1594 certificates as its authentication mechanism, each client also needs to be issued
1595 a certificate. The client certificate contains enough metadata to uniquely identify
1596 the client, typically organization, state, city, building, etc. On the host holding
1597 the secure CA private key:
1600 # cat > client.info <<EOF
1604 organiazation = Name of your organization
1605 cn = client.foo.example.com
1610 # certtool --generate-privkey > client-key.pem
1611 # certtool --generate-certificate \
1612 --load-ca-certificate ca-cert.pem \
1613 --load-ca-privkey ca-key.pem \
1614 --load-privkey client-key.pem \
1615 --template client.info \
1616 --outfile client-cert.pem
1619 The @code{client-key.pem} and @code{client-cert.pem} files should now be securely
1620 copied to the client for which they were generated.
1623 @node vnc_setup_sasl
1625 @subsection Configuring SASL mechanisms
1627 The following documentation assumes use of the Cyrus SASL implementation on a
1628 Linux host, but the principals should apply to any other SASL impl. When SASL
1629 is enabled, the mechanism configuration will be loaded from system default
1630 SASL service config /etc/sasl2/qemu.conf. If running QEMU as an
1631 unprivileged user, an environment variable SASL_CONF_PATH can be used
1632 to make it search alternate locations for the service config.
1634 The default configuration might contain
1637 mech_list: digest-md5
1638 sasldb_path: /etc/qemu/passwd.db
1641 This says to use the 'Digest MD5' mechanism, which is similar to the HTTP
1642 Digest-MD5 mechanism. The list of valid usernames & passwords is maintained
1643 in the /etc/qemu/passwd.db file, and can be updated using the saslpasswd2
1644 command. While this mechanism is easy to configure and use, it is not
1645 considered secure by modern standards, so only suitable for developers /
1648 A more serious deployment might use Kerberos, which is done with the 'gssapi'
1653 keytab: /etc/qemu/krb5.tab
1656 For this to work the administrator of your KDC must generate a Kerberos
1657 principal for the server, with a name of 'qemu/somehost.example.com@@EXAMPLE.COM'
1658 replacing 'somehost.example.com' with the fully qualified host name of the
1659 machine running QEMU, and 'EXAMPLE.COM' with the Kerberos Realm.
1661 Other configurations will be left as an exercise for the reader. It should
1662 be noted that only Digest-MD5 and GSSAPI provides a SSF layer for data
1663 encryption. For all other mechanisms, VNC should always be configured to
1664 use TLS and x509 certificates to protect security credentials from snooping.
1669 QEMU has a primitive support to work with gdb, so that you can do
1670 'Ctrl-C' while the virtual machine is running and inspect its state.
1672 In order to use gdb, launch QEMU with the '-s' option. It will wait for a
1675 qemu-system-i386 -s -kernel arch/i386/boot/bzImage -hda root-2.4.20.img \
1676 -append "root=/dev/hda"
1677 Connected to host network interface: tun0
1678 Waiting gdb connection on port 1234
1681 Then launch gdb on the 'vmlinux' executable:
1686 In gdb, connect to QEMU:
1688 (gdb) target remote localhost:1234
1691 Then you can use gdb normally. For example, type 'c' to launch the kernel:
1696 Here are some useful tips in order to use gdb on system code:
1700 Use @code{info reg} to display all the CPU registers.
1702 Use @code{x/10i $eip} to display the code at the PC position.
1704 Use @code{set architecture i8086} to dump 16 bit code. Then use
1705 @code{x/10i $cs*16+$eip} to dump the code at the PC position.
1708 Advanced debugging options:
1710 The default single stepping behavior is step with the IRQs and timer service routines off. It is set this way because when gdb executes a single step it expects to advance beyond the current instruction. With the IRQs and and timer service routines on, a single step might jump into the one of the interrupt or exception vectors instead of executing the current instruction. This means you may hit the same breakpoint a number of times before executing the instruction gdb wants to have executed. Because there are rare circumstances where you want to single step into an interrupt vector the behavior can be controlled from GDB. There are three commands you can query and set the single step behavior:
1712 @item maintenance packet qqemu.sstepbits
1714 This will display the MASK bits used to control the single stepping IE:
1716 (gdb) maintenance packet qqemu.sstepbits
1717 sending: "qqemu.sstepbits"
1718 received: "ENABLE=1,NOIRQ=2,NOTIMER=4"
1720 @item maintenance packet qqemu.sstep
1722 This will display the current value of the mask used when single stepping IE:
1724 (gdb) maintenance packet qqemu.sstep
1725 sending: "qqemu.sstep"
1728 @item maintenance packet Qqemu.sstep=HEX_VALUE
1730 This will change the single step mask, so if wanted to enable IRQs on the single step, but not timers, you would use:
1732 (gdb) maintenance packet Qqemu.sstep=0x5
1733 sending: "qemu.sstep=0x5"
1738 @node pcsys_os_specific
1739 @section Target OS specific information
1743 To have access to SVGA graphic modes under X11, use the @code{vesa} or
1744 the @code{cirrus} X11 driver. For optimal performances, use 16 bit
1745 color depth in the guest and the host OS.
1747 When using a 2.6 guest Linux kernel, you should add the option
1748 @code{clock=pit} on the kernel command line because the 2.6 Linux
1749 kernels make very strict real time clock checks by default that QEMU
1750 cannot simulate exactly.
1752 When using a 2.6 guest Linux kernel, verify that the 4G/4G patch is
1753 not activated because QEMU is slower with this patch. The QEMU
1754 Accelerator Module is also much slower in this case. Earlier Fedora
1755 Core 3 Linux kernel (< 2.6.9-1.724_FC3) were known to incorporate this
1756 patch by default. Newer kernels don't have it.
1760 If you have a slow host, using Windows 95 is better as it gives the
1761 best speed. Windows 2000 is also a good choice.
1763 @subsubsection SVGA graphic modes support
1765 QEMU emulates a Cirrus Logic GD5446 Video
1766 card. All Windows versions starting from Windows 95 should recognize
1767 and use this graphic card. For optimal performances, use 16 bit color
1768 depth in the guest and the host OS.
1770 If you are using Windows XP as guest OS and if you want to use high
1771 resolution modes which the Cirrus Logic BIOS does not support (i.e. >=
1772 1280x1024x16), then you should use the VESA VBE virtual graphic card
1773 (option @option{-std-vga}).
1775 @subsubsection CPU usage reduction
1777 Windows 9x does not correctly use the CPU HLT
1778 instruction. The result is that it takes host CPU cycles even when
1779 idle. You can install the utility from
1780 @url{http://www.user.cityline.ru/~maxamn/amnhltm.zip} to solve this
1781 problem. Note that no such tool is needed for NT, 2000 or XP.
1783 @subsubsection Windows 2000 disk full problem
1785 Windows 2000 has a bug which gives a disk full problem during its
1786 installation. When installing it, use the @option{-win2k-hack} QEMU
1787 option to enable a specific workaround. After Windows 2000 is
1788 installed, you no longer need this option (this option slows down the
1791 @subsubsection Windows 2000 shutdown
1793 Windows 2000 cannot automatically shutdown in QEMU although Windows 98
1794 can. It comes from the fact that Windows 2000 does not automatically
1795 use the APM driver provided by the BIOS.
1797 In order to correct that, do the following (thanks to Struan
1798 Bartlett): go to the Control Panel => Add/Remove Hardware & Next =>
1799 Add/Troubleshoot a device => Add a new device & Next => No, select the
1800 hardware from a list & Next => NT Apm/Legacy Support & Next => Next
1801 (again) a few times. Now the driver is installed and Windows 2000 now
1802 correctly instructs QEMU to shutdown at the appropriate moment.
1804 @subsubsection Share a directory between Unix and Windows
1806 See @ref{sec_invocation} about the help of the option @option{-smb}.
1808 @subsubsection Windows XP security problem
1810 Some releases of Windows XP install correctly but give a security
1813 A problem is preventing Windows from accurately checking the
1814 license for this computer. Error code: 0x800703e6.
1817 The workaround is to install a service pack for XP after a boot in safe
1818 mode. Then reboot, and the problem should go away. Since there is no
1819 network while in safe mode, its recommended to download the full
1820 installation of SP1 or SP2 and transfer that via an ISO or using the
1821 vvfat block device ("-hdb fat:directory_which_holds_the_SP").
1823 @subsection MS-DOS and FreeDOS
1825 @subsubsection CPU usage reduction
1827 DOS does not correctly use the CPU HLT instruction. The result is that
1828 it takes host CPU cycles even when idle. You can install the utility
1829 from @url{http://www.vmware.com/software/dosidle210.zip} to solve this
1832 @node QEMU System emulator for non PC targets
1833 @chapter QEMU System emulator for non PC targets
1835 QEMU is a generic emulator and it emulates many non PC
1836 machines. Most of the options are similar to the PC emulator. The
1837 differences are mentioned in the following sections.
1840 * PowerPC System emulator::
1841 * Sparc32 System emulator::
1842 * Sparc64 System emulator::
1843 * MIPS System emulator::
1844 * ARM System emulator::
1845 * ColdFire System emulator::
1846 * Cris System emulator::
1847 * Microblaze System emulator::
1848 * SH4 System emulator::
1849 * Xtensa System emulator::
1852 @node PowerPC System emulator
1853 @section PowerPC System emulator
1854 @cindex system emulation (PowerPC)
1856 Use the executable @file{qemu-system-ppc} to simulate a complete PREP
1857 or PowerMac PowerPC system.
1859 QEMU emulates the following PowerMac peripherals:
1863 UniNorth or Grackle PCI Bridge
1865 PCI VGA compatible card with VESA Bochs Extensions
1867 2 PMAC IDE interfaces with hard disk and CD-ROM support
1873 VIA-CUDA with ADB keyboard and mouse.
1876 QEMU emulates the following PREP peripherals:
1882 PCI VGA compatible card with VESA Bochs Extensions
1884 2 IDE interfaces with hard disk and CD-ROM support
1888 NE2000 network adapters
1892 PREP Non Volatile RAM
1894 PC compatible keyboard and mouse.
1897 QEMU uses the Open Hack'Ware Open Firmware Compatible BIOS available at
1898 @url{http://perso.magic.fr/l_indien/OpenHackWare/index.htm}.
1900 Since version 0.9.1, QEMU uses OpenBIOS @url{http://www.openbios.org/}
1901 for the g3beige and mac99 PowerMac machines. OpenBIOS is a free (GPL
1902 v2) portable firmware implementation. The goal is to implement a 100%
1903 IEEE 1275-1994 (referred to as Open Firmware) compliant firmware.
1905 @c man begin OPTIONS
1907 The following options are specific to the PowerPC emulation:
1911 @item -g @var{W}x@var{H}[x@var{DEPTH}]
1913 Set the initial VGA graphic mode. The default is 800x600x15.
1915 @item -prom-env @var{string}
1917 Set OpenBIOS variables in NVRAM, for example:
1920 qemu-system-ppc -prom-env 'auto-boot?=false' \
1921 -prom-env 'boot-device=hd:2,\yaboot' \
1922 -prom-env 'boot-args=conf=hd:2,\yaboot.conf'
1925 These variables are not used by Open Hack'Ware.
1932 More information is available at
1933 @url{http://perso.magic.fr/l_indien/qemu-ppc/}.
1935 @node Sparc32 System emulator
1936 @section Sparc32 System emulator
1937 @cindex system emulation (Sparc32)
1939 Use the executable @file{qemu-system-sparc} to simulate the following
1940 Sun4m architecture machines:
1955 SPARCstation Voyager
1962 The emulation is somewhat complete. SMP up to 16 CPUs is supported,
1963 but Linux limits the number of usable CPUs to 4.
1965 It's also possible to simulate a SPARCstation 2 (sun4c architecture),
1966 SPARCserver 1000, or SPARCcenter 2000 (sun4d architecture), but these
1967 emulators are not usable yet.
1969 QEMU emulates the following sun4m/sun4c/sun4d peripherals:
1977 Lance (Am7990) Ethernet
1979 Non Volatile RAM M48T02/M48T08
1981 Slave I/O: timers, interrupt controllers, Zilog serial ports, keyboard
1982 and power/reset logic
1984 ESP SCSI controller with hard disk and CD-ROM support
1986 Floppy drive (not on SS-600MP)
1988 CS4231 sound device (only on SS-5, not working yet)
1991 The number of peripherals is fixed in the architecture. Maximum
1992 memory size depends on the machine type, for SS-5 it is 256MB and for
1995 Since version 0.8.2, QEMU uses OpenBIOS
1996 @url{http://www.openbios.org/}. OpenBIOS is a free (GPL v2) portable
1997 firmware implementation. The goal is to implement a 100% IEEE
1998 1275-1994 (referred to as Open Firmware) compliant firmware.
2000 A sample Linux 2.6 series kernel and ram disk image are available on
2001 the QEMU web site. There are still issues with NetBSD and OpenBSD, but
2002 some kernel versions work. Please note that currently Solaris kernels
2003 don't work probably due to interface issues between OpenBIOS and
2006 @c man begin OPTIONS
2008 The following options are specific to the Sparc32 emulation:
2012 @item -g @var{W}x@var{H}x[x@var{DEPTH}]
2014 Set the initial TCX graphic mode. The default is 1024x768x8, currently
2015 the only other possible mode is 1024x768x24.
2017 @item -prom-env @var{string}
2019 Set OpenBIOS variables in NVRAM, for example:
2022 qemu-system-sparc -prom-env 'auto-boot?=false' \
2023 -prom-env 'boot-device=sd(0,2,0):d' -prom-env 'boot-args=linux single'
2026 @item -M [SS-4|SS-5|SS-10|SS-20|SS-600MP|LX|Voyager|SPARCClassic] [|SPARCbook|SS-2|SS-1000|SS-2000]
2028 Set the emulated machine type. Default is SS-5.
2034 @node Sparc64 System emulator
2035 @section Sparc64 System emulator
2036 @cindex system emulation (Sparc64)
2038 Use the executable @file{qemu-system-sparc64} to simulate a Sun4u
2039 (UltraSPARC PC-like machine), Sun4v (T1 PC-like machine), or generic
2040 Niagara (T1) machine. The emulator is not usable for anything yet, but
2041 it can launch some kernels.
2043 QEMU emulates the following peripherals:
2047 UltraSparc IIi APB PCI Bridge
2049 PCI VGA compatible card with VESA Bochs Extensions
2051 PS/2 mouse and keyboard
2053 Non Volatile RAM M48T59
2055 PC-compatible serial ports
2057 2 PCI IDE interfaces with hard disk and CD-ROM support
2062 @c man begin OPTIONS
2064 The following options are specific to the Sparc64 emulation:
2068 @item -prom-env @var{string}
2070 Set OpenBIOS variables in NVRAM, for example:
2073 qemu-system-sparc64 -prom-env 'auto-boot?=false'
2076 @item -M [sun4u|sun4v|Niagara]
2078 Set the emulated machine type. The default is sun4u.
2084 @node MIPS System emulator
2085 @section MIPS System emulator
2086 @cindex system emulation (MIPS)
2088 Four executables cover simulation of 32 and 64-bit MIPS systems in
2089 both endian options, @file{qemu-system-mips}, @file{qemu-system-mipsel}
2090 @file{qemu-system-mips64} and @file{qemu-system-mips64el}.
2091 Five different machine types are emulated:
2095 A generic ISA PC-like machine "mips"
2097 The MIPS Malta prototype board "malta"
2099 An ACER Pica "pica61". This machine needs the 64-bit emulator.
2101 MIPS emulator pseudo board "mipssim"
2103 A MIPS Magnum R4000 machine "magnum". This machine needs the 64-bit emulator.
2106 The generic emulation is supported by Debian 'Etch' and is able to
2107 install Debian into a virtual disk image. The following devices are
2112 A range of MIPS CPUs, default is the 24Kf
2114 PC style serial port
2121 The Malta emulation supports the following devices:
2125 Core board with MIPS 24Kf CPU and Galileo system controller
2127 PIIX4 PCI/USB/SMbus controller
2129 The Multi-I/O chip's serial device
2131 PCI network cards (PCnet32 and others)
2133 Malta FPGA serial device
2135 Cirrus (default) or any other PCI VGA graphics card
2138 The ACER Pica emulation supports:
2144 PC-style IRQ and DMA controllers
2151 The mipssim pseudo board emulation provides an environment similar
2152 to what the proprietary MIPS emulator uses for running Linux.
2157 A range of MIPS CPUs, default is the 24Kf
2159 PC style serial port
2161 MIPSnet network emulation
2164 The MIPS Magnum R4000 emulation supports:
2170 PC-style IRQ controller
2180 @node ARM System emulator
2181 @section ARM System emulator
2182 @cindex system emulation (ARM)
2184 Use the executable @file{qemu-system-arm} to simulate a ARM
2185 machine. The ARM Integrator/CP board is emulated with the following
2190 ARM926E, ARM1026E, ARM946E, ARM1136 or Cortex-A8 CPU
2194 SMC 91c111 Ethernet adapter
2196 PL110 LCD controller
2198 PL050 KMI with PS/2 keyboard and mouse.
2200 PL181 MultiMedia Card Interface with SD card.
2203 The ARM Versatile baseboard is emulated with the following devices:
2207 ARM926E, ARM1136 or Cortex-A8 CPU
2209 PL190 Vectored Interrupt Controller
2213 SMC 91c111 Ethernet adapter
2215 PL110 LCD controller
2217 PL050 KMI with PS/2 keyboard and mouse.
2219 PCI host bridge. Note the emulated PCI bridge only provides access to
2220 PCI memory space. It does not provide access to PCI IO space.
2221 This means some devices (eg. ne2k_pci NIC) are not usable, and others
2222 (eg. rtl8139 NIC) are only usable when the guest drivers use the memory
2223 mapped control registers.
2225 PCI OHCI USB controller.
2227 LSI53C895A PCI SCSI Host Bus Adapter with hard disk and CD-ROM devices.
2229 PL181 MultiMedia Card Interface with SD card.
2232 Several variants of the ARM RealView baseboard are emulated,
2233 including the EB, PB-A8 and PBX-A9. Due to interactions with the
2234 bootloader, only certain Linux kernel configurations work out
2235 of the box on these boards.
2237 Kernels for the PB-A8 board should have CONFIG_REALVIEW_HIGH_PHYS_OFFSET
2238 enabled in the kernel, and expect 512M RAM. Kernels for The PBX-A9 board
2239 should have CONFIG_SPARSEMEM enabled, CONFIG_REALVIEW_HIGH_PHYS_OFFSET
2240 disabled and expect 1024M RAM.
2242 The following devices are emulated:
2246 ARM926E, ARM1136, ARM11MPCore, Cortex-A8 or Cortex-A9 MPCore CPU
2248 ARM AMBA Generic/Distributed Interrupt Controller
2252 SMC 91c111 or SMSC LAN9118 Ethernet adapter
2254 PL110 LCD controller
2256 PL050 KMI with PS/2 keyboard and mouse
2260 PCI OHCI USB controller
2262 LSI53C895A PCI SCSI Host Bus Adapter with hard disk and CD-ROM devices
2264 PL181 MultiMedia Card Interface with SD card.
2267 The XScale-based clamshell PDA models ("Spitz", "Akita", "Borzoi"
2268 and "Terrier") emulation includes the following peripherals:
2272 Intel PXA270 System-on-chip (ARM V5TE core)
2276 IBM/Hitachi DSCM microdrive in a PXA PCMCIA slot - not in "Akita"
2278 On-chip OHCI USB controller
2280 On-chip LCD controller
2282 On-chip Real Time Clock
2284 TI ADS7846 touchscreen controller on SSP bus
2286 Maxim MAX1111 analog-digital converter on I@math{^2}C bus
2288 GPIO-connected keyboard controller and LEDs
2290 Secure Digital card connected to PXA MMC/SD host
2294 WM8750 audio CODEC on I@math{^2}C and I@math{^2}S busses
2297 The Palm Tungsten|E PDA (codename "Cheetah") emulation includes the
2302 Texas Instruments OMAP310 System-on-chip (ARM 925T core)
2304 ROM and RAM memories (ROM firmware image can be loaded with -option-rom)
2306 On-chip LCD controller
2308 On-chip Real Time Clock
2310 TI TSC2102i touchscreen controller / analog-digital converter / Audio
2311 CODEC, connected through MicroWire and I@math{^2}S busses
2313 GPIO-connected matrix keypad
2315 Secure Digital card connected to OMAP MMC/SD host
2320 Nokia N800 and N810 internet tablets (known also as RX-34 and RX-44 / 48)
2321 emulation supports the following elements:
2325 Texas Instruments OMAP2420 System-on-chip (ARM 1136 core)
2327 RAM and non-volatile OneNAND Flash memories
2329 Display connected to EPSON remote framebuffer chip and OMAP on-chip
2330 display controller and a LS041y3 MIPI DBI-C controller
2332 TI TSC2301 (in N800) and TI TSC2005 (in N810) touchscreen controllers
2333 driven through SPI bus
2335 National Semiconductor LM8323-controlled qwerty keyboard driven
2336 through I@math{^2}C bus
2338 Secure Digital card connected to OMAP MMC/SD host
2340 Three OMAP on-chip UARTs and on-chip STI debugging console
2342 A Bluetooth(R) transceiver and HCI connected to an UART
2344 Mentor Graphics "Inventra" dual-role USB controller embedded in a TI
2345 TUSB6010 chip - only USB host mode is supported
2347 TI TMP105 temperature sensor driven through I@math{^2}C bus
2349 TI TWL92230C power management companion with an RTC on I@math{^2}C bus
2351 Nokia RETU and TAHVO multi-purpose chips with an RTC, connected
2355 The Luminary Micro Stellaris LM3S811EVB emulation includes the following
2362 64k Flash and 8k SRAM.
2364 Timers, UARTs, ADC and I@math{^2}C interface.
2366 OSRAM Pictiva 96x16 OLED with SSD0303 controller on I@math{^2}C bus.
2369 The Luminary Micro Stellaris LM3S6965EVB emulation includes the following
2376 256k Flash and 64k SRAM.
2378 Timers, UARTs, ADC, I@math{^2}C and SSI interfaces.
2380 OSRAM Pictiva 128x64 OLED with SSD0323 controller connected via SSI.
2383 The Freecom MusicPal internet radio emulation includes the following
2388 Marvell MV88W8618 ARM core.
2390 32 MB RAM, 256 KB SRAM, 8 MB flash.
2394 MV88W8xx8 Ethernet controller
2396 MV88W8618 audio controller, WM8750 CODEC and mixer
2398 128×64 display with brightness control
2400 2 buttons, 2 navigation wheels with button function
2403 The Siemens SX1 models v1 and v2 (default) basic emulation.
2404 The emulation includes the following elements:
2408 Texas Instruments OMAP310 System-on-chip (ARM 925T core)
2410 ROM and RAM memories (ROM firmware image can be loaded with -pflash)
2412 1 Flash of 16MB and 1 Flash of 8MB
2416 On-chip LCD controller
2418 On-chip Real Time Clock
2420 Secure Digital card connected to OMAP MMC/SD host
2425 A Linux 2.6 test image is available on the QEMU web site. More
2426 information is available in the QEMU mailing-list archive.
2428 @c man begin OPTIONS
2430 The following options are specific to the ARM emulation:
2435 Enable semihosting syscall emulation.
2437 On ARM this implements the "Angel" interface.
2439 Note that this allows guest direct access to the host filesystem,
2440 so should only be used with trusted guest OS.
2444 @node ColdFire System emulator
2445 @section ColdFire System emulator
2446 @cindex system emulation (ColdFire)
2447 @cindex system emulation (M68K)
2449 Use the executable @file{qemu-system-m68k} to simulate a ColdFire machine.
2450 The emulator is able to boot a uClinux kernel.
2452 The M5208EVB emulation includes the following devices:
2456 MCF5208 ColdFire V2 Microprocessor (ISA A+ with EMAC).
2458 Three Two on-chip UARTs.
2460 Fast Ethernet Controller (FEC)
2463 The AN5206 emulation includes the following devices:
2467 MCF5206 ColdFire V2 Microprocessor.
2472 @c man begin OPTIONS
2474 The following options are specific to the ColdFire emulation:
2479 Enable semihosting syscall emulation.
2481 On M68K this implements the "ColdFire GDB" interface used by libgloss.
2483 Note that this allows guest direct access to the host filesystem,
2484 so should only be used with trusted guest OS.
2488 @node Cris System emulator
2489 @section Cris System emulator
2490 @cindex system emulation (Cris)
2494 @node Microblaze System emulator
2495 @section Microblaze System emulator
2496 @cindex system emulation (Microblaze)
2500 @node SH4 System emulator
2501 @section SH4 System emulator
2502 @cindex system emulation (SH4)
2506 @node Xtensa System emulator
2507 @section Xtensa System emulator
2508 @cindex system emulation (Xtensa)
2510 Two executables cover simulation of both Xtensa endian options,
2511 @file{qemu-system-xtensa} and @file{qemu-system-xtensaeb}.
2512 Two different machine types are emulated:
2516 Xtensa emulator pseudo board "sim"
2518 Avnet LX60/LX110/LX200 board
2521 The sim pseudo board emulation provides an environment similar
2522 to one provided by the proprietary Tensilica ISS.
2527 A range of Xtensa CPUs, default is the DC232B
2529 Console and filesystem access via semihosting calls
2532 The Avnet LX60/LX110/LX200 emulation supports:
2536 A range of Xtensa CPUs, default is the DC232B
2540 OpenCores 10/100 Mbps Ethernet MAC
2543 @c man begin OPTIONS
2545 The following options are specific to the Xtensa emulation:
2550 Enable semihosting syscall emulation.
2552 Xtensa semihosting provides basic file IO calls, such as open/read/write/seek/select.
2553 Tensilica baremetal libc for ISS and linux platform "sim" use this interface.
2555 Note that this allows guest direct access to the host filesystem,
2556 so should only be used with trusted guest OS.
2559 @node QEMU User space emulator
2560 @chapter QEMU User space emulator
2563 * Supported Operating Systems ::
2564 * Linux User space emulator::
2565 * BSD User space emulator ::
2568 @node Supported Operating Systems
2569 @section Supported Operating Systems
2571 The following OS are supported in user space emulation:
2575 Linux (referred as qemu-linux-user)
2577 BSD (referred as qemu-bsd-user)
2580 @node Linux User space emulator
2581 @section Linux User space emulator
2586 * Command line options::
2591 @subsection Quick Start
2593 In order to launch a Linux process, QEMU needs the process executable
2594 itself and all the target (x86) dynamic libraries used by it.
2598 @item On x86, you can just try to launch any process by using the native
2602 qemu-i386 -L / /bin/ls
2605 @code{-L /} tells that the x86 dynamic linker must be searched with a
2608 @item Since QEMU is also a linux process, you can launch QEMU with
2609 QEMU (NOTE: you can only do that if you compiled QEMU from the sources):
2612 qemu-i386 -L / qemu-i386 -L / /bin/ls
2615 @item On non x86 CPUs, you need first to download at least an x86 glibc
2616 (@file{qemu-runtime-i386-XXX-.tar.gz} on the QEMU web page). Ensure that
2617 @code{LD_LIBRARY_PATH} is not set:
2620 unset LD_LIBRARY_PATH
2623 Then you can launch the precompiled @file{ls} x86 executable:
2626 qemu-i386 tests/i386/ls
2628 You can look at @file{scripts/qemu-binfmt-conf.sh} so that
2629 QEMU is automatically launched by the Linux kernel when you try to
2630 launch x86 executables. It requires the @code{binfmt_misc} module in the
2633 @item The x86 version of QEMU is also included. You can try weird things such as:
2635 qemu-i386 /usr/local/qemu-i386/bin/qemu-i386 \
2636 /usr/local/qemu-i386/bin/ls-i386
2642 @subsection Wine launch
2646 @item Ensure that you have a working QEMU with the x86 glibc
2647 distribution (see previous section). In order to verify it, you must be
2651 qemu-i386 /usr/local/qemu-i386/bin/ls-i386
2654 @item Download the binary x86 Wine install
2655 (@file{qemu-XXX-i386-wine.tar.gz} on the QEMU web page).
2657 @item Configure Wine on your account. Look at the provided script
2658 @file{/usr/local/qemu-i386/@/bin/wine-conf.sh}. Your previous
2659 @code{$@{HOME@}/.wine} directory is saved to @code{$@{HOME@}/.wine.org}.
2661 @item Then you can try the example @file{putty.exe}:
2664 qemu-i386 /usr/local/qemu-i386/wine/bin/wine \
2665 /usr/local/qemu-i386/wine/c/Program\ Files/putty.exe
2670 @node Command line options
2671 @subsection Command line options
2674 usage: qemu-i386 [-h] [-d] [-L path] [-s size] [-cpu model] [-g port] [-B offset] [-R size] program [arguments...]
2681 Set the x86 elf interpreter prefix (default=/usr/local/qemu-i386)
2683 Set the x86 stack size in bytes (default=524288)
2685 Select CPU model (-cpu help for list and additional feature selection)
2686 @item -E @var{var}=@var{value}
2687 Set environment @var{var} to @var{value}.
2689 Remove @var{var} from the environment.
2691 Offset guest address by the specified number of bytes. This is useful when
2692 the address region required by guest applications is reserved on the host.
2693 This option is currently only supported on some hosts.
2695 Pre-allocate a guest virtual address space of the given size (in bytes).
2696 "G", "M", and "k" suffixes may be used when specifying the size.
2703 Activate logging of the specified items (use '-d help' for a list of log items)
2705 Act as if the host page size was 'pagesize' bytes
2707 Wait gdb connection to port
2709 Run the emulation in single step mode.
2712 Environment variables:
2716 Print system calls and arguments similar to the 'strace' program
2717 (NOTE: the actual 'strace' program will not work because the user
2718 space emulator hasn't implemented ptrace). At the moment this is
2719 incomplete. All system calls that don't have a specific argument
2720 format are printed with information for six arguments. Many
2721 flag-style arguments don't have decoders and will show up as numbers.
2724 @node Other binaries
2725 @subsection Other binaries
2727 @cindex user mode (Alpha)
2728 @command{qemu-alpha} TODO.
2730 @cindex user mode (ARM)
2731 @command{qemu-armeb} TODO.
2733 @cindex user mode (ARM)
2734 @command{qemu-arm} is also capable of running ARM "Angel" semihosted ELF
2735 binaries (as implemented by the arm-elf and arm-eabi Newlib/GDB
2736 configurations), and arm-uclinux bFLT format binaries.
2738 @cindex user mode (ColdFire)
2739 @cindex user mode (M68K)
2740 @command{qemu-m68k} is capable of running semihosted binaries using the BDM
2741 (m5xxx-ram-hosted.ld) or m68k-sim (sim.ld) syscall interfaces, and
2742 coldfire uClinux bFLT format binaries.
2744 The binary format is detected automatically.
2746 @cindex user mode (Cris)
2747 @command{qemu-cris} TODO.
2749 @cindex user mode (i386)
2750 @command{qemu-i386} TODO.
2751 @command{qemu-x86_64} TODO.
2753 @cindex user mode (Microblaze)
2754 @command{qemu-microblaze} TODO.
2756 @cindex user mode (MIPS)
2757 @command{qemu-mips} TODO.
2758 @command{qemu-mipsel} TODO.
2760 @cindex user mode (PowerPC)
2761 @command{qemu-ppc64abi32} TODO.
2762 @command{qemu-ppc64} TODO.
2763 @command{qemu-ppc} TODO.
2765 @cindex user mode (SH4)
2766 @command{qemu-sh4eb} TODO.
2767 @command{qemu-sh4} TODO.
2769 @cindex user mode (SPARC)
2770 @command{qemu-sparc} can execute Sparc32 binaries (Sparc32 CPU, 32 bit ABI).
2772 @command{qemu-sparc32plus} can execute Sparc32 and SPARC32PLUS binaries
2773 (Sparc64 CPU, 32 bit ABI).
2775 @command{qemu-sparc64} can execute some Sparc64 (Sparc64 CPU, 64 bit ABI) and
2776 SPARC32PLUS binaries (Sparc64 CPU, 32 bit ABI).
2778 @node BSD User space emulator
2779 @section BSD User space emulator
2784 * BSD Command line options::
2788 @subsection BSD Status
2792 target Sparc64 on Sparc64: Some trivial programs work.
2795 @node BSD Quick Start
2796 @subsection Quick Start
2798 In order to launch a BSD process, QEMU needs the process executable
2799 itself and all the target dynamic libraries used by it.
2803 @item On Sparc64, you can just try to launch any process by using the native
2807 qemu-sparc64 /bin/ls
2812 @node BSD Command line options
2813 @subsection Command line options
2816 usage: qemu-sparc64 [-h] [-d] [-L path] [-s size] [-bsd type] program [arguments...]
2823 Set the library root path (default=/)
2825 Set the stack size in bytes (default=524288)
2826 @item -ignore-environment
2827 Start with an empty environment. Without this option,
2828 the initial environment is a copy of the caller's environment.
2829 @item -E @var{var}=@var{value}
2830 Set environment @var{var} to @var{value}.
2832 Remove @var{var} from the environment.
2834 Set the type of the emulated BSD Operating system. Valid values are
2835 FreeBSD, NetBSD and OpenBSD (default).
2842 Activate logging of the specified items (use '-d help' for a list of log items)
2844 Act as if the host page size was 'pagesize' bytes
2846 Run the emulation in single step mode.
2850 @chapter Compilation from the sources
2855 * Cross compilation for Windows with Linux::
2863 @subsection Compilation
2865 First you must decompress the sources:
2868 tar zxvf qemu-x.y.z.tar.gz
2872 Then you configure QEMU and build it (usually no options are needed):
2878 Then type as root user:
2882 to install QEMU in @file{/usr/local}.
2888 @item Install the current versions of MSYS and MinGW from
2889 @url{http://www.mingw.org/}. You can find detailed installation
2890 instructions in the download section and the FAQ.
2893 the MinGW development library of SDL 1.2.x
2894 (@file{SDL-devel-1.2.x-@/mingw32.tar.gz}) from
2895 @url{http://www.libsdl.org}. Unpack it in a temporary place and
2896 edit the @file{sdl-config} script so that it gives the
2897 correct SDL directory when invoked.
2899 @item Install the MinGW version of zlib and make sure
2900 @file{zlib.h} and @file{libz.dll.a} are in
2901 MinGW's default header and linker search paths.
2903 @item Extract the current version of QEMU.
2905 @item Start the MSYS shell (file @file{msys.bat}).
2907 @item Change to the QEMU directory. Launch @file{./configure} and
2908 @file{make}. If you have problems using SDL, verify that
2909 @file{sdl-config} can be launched from the MSYS command line.
2911 @item You can install QEMU in @file{Program Files/QEMU} by typing
2912 @file{make install}. Don't forget to copy @file{SDL.dll} in
2913 @file{Program Files/QEMU}.
2917 @node Cross compilation for Windows with Linux
2918 @section Cross compilation for Windows with Linux
2922 Install the MinGW cross compilation tools available at
2923 @url{http://www.mingw.org/}.
2926 the MinGW development library of SDL 1.2.x
2927 (@file{SDL-devel-1.2.x-@/mingw32.tar.gz}) from
2928 @url{http://www.libsdl.org}. Unpack it in a temporary place and
2929 edit the @file{sdl-config} script so that it gives the
2930 correct SDL directory when invoked. Set up the @code{PATH} environment
2931 variable so that @file{sdl-config} can be launched by
2932 the QEMU configuration script.
2934 @item Install the MinGW version of zlib and make sure
2935 @file{zlib.h} and @file{libz.dll.a} are in
2936 MinGW's default header and linker search paths.
2939 Configure QEMU for Windows cross compilation:
2941 PATH=/usr/i686-pc-mingw32/sys-root/mingw/bin:$PATH ./configure --cross-prefix='i686-pc-mingw32-'
2943 The example assumes @file{sdl-config} is installed under @file{/usr/i686-pc-mingw32/sys-root/mingw/bin} and
2944 MinGW cross compilation tools have names like @file{i686-pc-mingw32-gcc} and @file{i686-pc-mingw32-strip}.
2945 We set the @code{PATH} environment variable to ensure the MinGW version of @file{sdl-config} is used and
2946 use --cross-prefix to specify the name of the cross compiler.
2947 You can also use --prefix to set the Win32 install path which defaults to @file{c:/Program Files/QEMU}.
2949 Under Fedora Linux, you can run:
2951 yum -y install mingw32-gcc mingw32-SDL mingw32-zlib
2953 to get a suitable cross compilation environment.
2955 @item You can install QEMU in the installation directory by typing
2956 @code{make install}. Don't forget to copy @file{SDL.dll} and @file{zlib1.dll} into the
2957 installation directory.
2961 Wine can be used to launch the resulting qemu-system-i386.exe
2962 and all other qemu-system-@var{target}.exe compiled for Win32.
2967 The Mac OS X patches are not fully merged in QEMU, so you should look
2968 at the QEMU mailing list archive to have all the necessary
2972 @section Make targets
2978 Make everything which is typically needed.
2987 Remove most files which were built during make.
2989 @item make distclean
2990 Remove everything which was built during make.
2996 Create documentation in dvi, html, info or pdf format.
3001 @item make defconfig
3002 (Re-)create some build configuration files.
3003 User made changes will be overwritten.
3014 QEMU is a trademark of Fabrice Bellard.
3016 QEMU is released under the GNU General Public License (TODO: add link).
3017 Parts of QEMU have specific licenses, see file LICENSE.
3019 TODO (refer to file LICENSE, include it, include the GPL?)
3033 @section Concept Index
3034 This is the main index. Should we combine all keywords in one index? TODO
3037 @node Function Index
3038 @section Function Index
3039 This index could be used for command line options and monitor functions.
3042 @node Keystroke Index
3043 @section Keystroke Index
3045 This is a list of all keystrokes which have a special function
3046 in system emulation.
3051 @section Program Index
3054 @node Data Type Index
3055 @section Data Type Index
3057 This index could be used for qdev device names and options.
3061 @node Variable Index
3062 @section Variable Index