]> git.proxmox.com Git - qemu.git/blame - qemu-options.hx
kvm: Allow to set shadow MMU size
[qemu.git] / qemu-options.hx
CommitLineData
5824d651
BS
1HXCOMM Use DEFHEADING() to define headings in both help text and texi
2HXCOMM Text between STEXI and ETEXI are copied to texi version and
3HXCOMM discarded from C version
ad96090a
BS
4HXCOMM DEF(option, HAS_ARG/0, opt_enum, opt_help, arch_mask) is used to
5HXCOMM construct option structures, enums and help message for specified
6HXCOMM architectures.
5824d651
BS
7HXCOMM HXCOMM can be used for comments, discarded from both texi and C
8
9DEFHEADING(Standard options:)
10STEXI
11@table @option
12ETEXI
13
14DEF("help", 0, QEMU_OPTION_h,
ad96090a 15 "-h or -help display this help and exit\n", QEMU_ARCH_ALL)
5824d651
BS
16STEXI
17@item -h
6616b2ad 18@findex -h
5824d651
BS
19Display help and exit
20ETEXI
21
9bd7e6d9 22DEF("version", 0, QEMU_OPTION_version,
ad96090a 23 "-version display version information and exit\n", QEMU_ARCH_ALL)
9bd7e6d9
PB
24STEXI
25@item -version
6616b2ad 26@findex -version
9bd7e6d9
PB
27Display version information and exit
28ETEXI
29
80f52a66
JK
30DEF("machine", HAS_ARG, QEMU_OPTION_machine, \
31 "-machine [type=]name[,prop[=value][,...]]\n"
32 " selects emulated machine (-machine ? for list)\n"
33 " property accel=accel1[:accel2[:...]] selects accelerator\n"
6a48ffaa 34 " supported accelerators are kvm, xen, tcg (default: tcg)\n"
39d6960a
JK
35 " kernel_irqchip=on|off controls accelerated irqchip support\n"
36 " kvm_shadow_mem=size of KVM shadow MMU\n",
80f52a66 37 QEMU_ARCH_ALL)
5824d651 38STEXI
80f52a66
JK
39@item -machine [type=]@var{name}[,prop=@var{value}[,...]]
40@findex -machine
41Select the emulated machine by @var{name}. Use @code{-machine ?} to list
42available machines. Supported machine properties are:
43@table @option
44@item accel=@var{accels1}[:@var{accels2}[:...]]
45This is used to enable an accelerator. Depending on the target architecture,
46kvm, xen, or tcg can be available. By default, tcg is used. If there is more
47than one accelerator specified, the next one is used if the previous one fails
48to initialize.
6a48ffaa
JK
49@item kernel_irqchip=on|off
50Enables in-kernel irqchip support for the chosen accelerator when available.
39d6960a
JK
51@item kvm_shadow_mem=size
52Defines the size of the KVM shadow MMU.
80f52a66 53@end table
5824d651
BS
54ETEXI
55
80f52a66
JK
56HXCOMM Deprecated by -machine
57DEF("M", HAS_ARG, QEMU_OPTION_M, "", QEMU_ARCH_ALL)
58
5824d651 59DEF("cpu", HAS_ARG, QEMU_OPTION_cpu,
ad96090a 60 "-cpu cpu select CPU (-cpu ? for list)\n", QEMU_ARCH_ALL)
5824d651
BS
61STEXI
62@item -cpu @var{model}
6616b2ad 63@findex -cpu
5824d651
BS
64Select CPU model (-cpu ? for list and additional feature selection)
65ETEXI
66
67DEF("smp", HAS_ARG, QEMU_OPTION_smp,
58a04db1 68 "-smp n[,maxcpus=cpus][,cores=cores][,threads=threads][,sockets=sockets]\n"
6be68d7e
JS
69 " set the number of CPUs to 'n' [default=1]\n"
70 " maxcpus= maximum number of total cpus, including\n"
ca1a8a06 71 " offline CPUs for hotplug, etc\n"
58a04db1
AP
72 " cores= number of CPU cores on one socket\n"
73 " threads= number of threads on one CPU core\n"
ad96090a
BS
74 " sockets= number of discrete sockets in the system\n",
75 QEMU_ARCH_ALL)
5824d651 76STEXI
58a04db1 77@item -smp @var{n}[,cores=@var{cores}][,threads=@var{threads}][,sockets=@var{sockets}][,maxcpus=@var{maxcpus}]
6616b2ad 78@findex -smp
5824d651
BS
79Simulate an SMP system with @var{n} CPUs. On the PC target, up to 255
80CPUs are supported. On Sparc32 target, Linux limits the number of usable CPUs
81to 4.
58a04db1
AP
82For the PC target, the number of @var{cores} per socket, the number
83of @var{threads} per cores and the total number of @var{sockets} can be
84specified. Missing values will be computed. If any on the three values is
85given, the total number of CPUs @var{n} can be omitted. @var{maxcpus}
86specifies the maximum number of hotpluggable CPUs.
5824d651
BS
87ETEXI
88
268a362c 89DEF("numa", HAS_ARG, QEMU_OPTION_numa,
ad96090a 90 "-numa node[,mem=size][,cpus=cpu[-cpu]][,nodeid=node]\n", QEMU_ARCH_ALL)
268a362c
AL
91STEXI
92@item -numa @var{opts}
6616b2ad 93@findex -numa
268a362c
AL
94Simulate a multi node NUMA system. If mem and cpus are omitted, resources
95are split equally.
96ETEXI
97
5824d651 98DEF("fda", HAS_ARG, QEMU_OPTION_fda,
ad96090a
BS
99 "-fda/-fdb file use 'file' as floppy disk 0/1 image\n", QEMU_ARCH_ALL)
100DEF("fdb", HAS_ARG, QEMU_OPTION_fdb, "", QEMU_ARCH_ALL)
5824d651
BS
101STEXI
102@item -fda @var{file}
103@item -fdb @var{file}
6616b2ad
SW
104@findex -fda
105@findex -fdb
5824d651
BS
106Use @var{file} as floppy disk 0/1 image (@pxref{disk_images}). You can
107use the host floppy by using @file{/dev/fd0} as filename (@pxref{host_drives}).
108ETEXI
109
110DEF("hda", HAS_ARG, QEMU_OPTION_hda,
ad96090a
BS
111 "-hda/-hdb file use 'file' as IDE hard disk 0/1 image\n", QEMU_ARCH_ALL)
112DEF("hdb", HAS_ARG, QEMU_OPTION_hdb, "", QEMU_ARCH_ALL)
5824d651 113DEF("hdc", HAS_ARG, QEMU_OPTION_hdc,
ad96090a
BS
114 "-hdc/-hdd file use 'file' as IDE hard disk 2/3 image\n", QEMU_ARCH_ALL)
115DEF("hdd", HAS_ARG, QEMU_OPTION_hdd, "", QEMU_ARCH_ALL)
5824d651
BS
116STEXI
117@item -hda @var{file}
118@item -hdb @var{file}
119@item -hdc @var{file}
120@item -hdd @var{file}
6616b2ad
SW
121@findex -hda
122@findex -hdb
123@findex -hdc
124@findex -hdd
5824d651
BS
125Use @var{file} as hard disk 0, 1, 2 or 3 image (@pxref{disk_images}).
126ETEXI
127
128DEF("cdrom", HAS_ARG, QEMU_OPTION_cdrom,
ad96090a
BS
129 "-cdrom file use 'file' as IDE cdrom image (cdrom is ide1 master)\n",
130 QEMU_ARCH_ALL)
5824d651
BS
131STEXI
132@item -cdrom @var{file}
6616b2ad 133@findex -cdrom
5824d651
BS
134Use @var{file} as CD-ROM image (you cannot use @option{-hdc} and
135@option{-cdrom} at the same time). You can use the host CD-ROM by
136using @file{/dev/cdrom} as filename (@pxref{host_drives}).
137ETEXI
138
139DEF("drive", HAS_ARG, QEMU_OPTION_drive,
140 "-drive [file=file][,if=type][,bus=n][,unit=m][,media=d][,index=i]\n"
141 " [,cyls=c,heads=h,secs=s[,trans=t]][,snapshot=on|off]\n"
92196b2f 142 " [,cache=writethrough|writeback|none|directsync|unsafe][,format=f]\n"
016f5cf6 143 " [,serial=s][,addr=A][,id=name][,aio=threads|native]\n"
fb0490f6 144 " [,readonly=on|off][,copy-on-read=on|off]\n"
0563e191 145 " [[,bps=b]|[[,bps_rd=r][,bps_wr=w]]][[,iops=i]|[[,iops_rd=r][,iops_wr=w]]\n"
ad96090a 146 " use 'file' as a drive image\n", QEMU_ARCH_ALL)
5824d651
BS
147STEXI
148@item -drive @var{option}[,@var{option}[,@var{option}[,...]]]
6616b2ad 149@findex -drive
5824d651
BS
150
151Define a new drive. Valid options are:
152
b3f046c2 153@table @option
5824d651
BS
154@item file=@var{file}
155This option defines which disk image (@pxref{disk_images}) to use with
156this drive. If the filename contains comma, you must double it
157(for instance, "file=my,,file" to use file "my,file").
0f5314a2
RS
158
159Special files such as iSCSI devices can be specified using protocol
160specific URLs. See the section for "Device URL Syntax" for more information.
5824d651
BS
161@item if=@var{interface}
162This option defines on which type on interface the drive is connected.
163Available types are: ide, scsi, sd, mtd, floppy, pflash, virtio.
164@item bus=@var{bus},unit=@var{unit}
165These options define where is connected the drive by defining the bus number and
166the unit id.
167@item index=@var{index}
168This option defines where is connected the drive by using an index in the list
169of available connectors of a given interface type.
170@item media=@var{media}
171This option defines the type of the media: disk or cdrom.
172@item cyls=@var{c},heads=@var{h},secs=@var{s}[,trans=@var{t}]
173These options have the same definition as they have in @option{-hdachs}.
174@item snapshot=@var{snapshot}
175@var{snapshot} is "on" or "off" and allows to enable snapshot for given drive (see @option{-snapshot}).
176@item cache=@var{cache}
92196b2f 177@var{cache} is "none", "writeback", "unsafe", "directsync" or "writethrough" and controls how the host cache is used to access block data.
5c6c3a6c
CH
178@item aio=@var{aio}
179@var{aio} is "threads", or "native" and selects between pthread based disk I/O and native Linux AIO.
5824d651
BS
180@item format=@var{format}
181Specify which disk @var{format} will be used rather than detecting
182the format. Can be used to specifiy format=raw to avoid interpreting
183an untrusted format header.
184@item serial=@var{serial}
185This option specifies the serial number to assign to the device.
c2cc47a4
MA
186@item addr=@var{addr}
187Specify the controller's PCI address (if=virtio only).
ae73e591
LC
188@item werror=@var{action},rerror=@var{action}
189Specify which @var{action} to take on write and read errors. Valid actions are:
190"ignore" (ignore the error and try to continue), "stop" (pause QEMU),
191"report" (report the error to the guest), "enospc" (pause QEMU only if the
192host disk is full; report the error to the guest otherwise).
193The default setting is @option{werror=enospc} and @option{rerror=report}.
194@item readonly
195Open drive @option{file} as read-only. Guest write attempts will fail.
fb0490f6
SH
196@item copy-on-read=@var{copy-on-read}
197@var{copy-on-read} is "on" or "off" and enables whether to copy read backing
198file sectors into the image file.
5824d651
BS
199@end table
200
201By default, writethrough caching is used for all block device. This means that
202the host page cache will be used to read and write data but write notification
203will be sent to the guest only when the data has been reported as written by
204the storage subsystem.
205
206Writeback caching will report data writes as completed as soon as the data is
207present in the host page cache. This is safe as long as you trust your host.
208If your host crashes or loses power, then the guest may experience data
c3177288 209corruption.
5824d651 210
c304d317 211The host page cache can be avoided entirely with @option{cache=none}. This will
5824d651
BS
212attempt to do disk IO directly to the guests memory. QEMU may still perform
213an internal copy of the data.
214
92196b2f
SH
215The host page cache can be avoided while only sending write notifications to
216the guest when the data has been reported as written by the storage subsystem
217using @option{cache=directsync}.
218
5824d651
BS
219Some block drivers perform badly with @option{cache=writethrough}, most notably,
220qcow2. If performance is more important than correctness,
0aa217e4 221@option{cache=writeback} should be used with qcow2.
5824d651 222
016f5cf6
AG
223In case you don't care about data integrity over host failures, use
224cache=unsafe. This option tells qemu that it never needs to write any data
225to the disk but can instead keeps things in cache. If anything goes wrong,
e7d81004 226like your host losing power, the disk storage getting disconnected accidentally,
c3177288
AG
227etc. you're image will most probably be rendered unusable. When using
228the @option{-snapshot} option, unsafe caching is always used.
016f5cf6 229
fb0490f6
SH
230Copy-on-read avoids accessing the same backing file sectors repeatedly and is
231useful when the backing file is over a slow network. By default copy-on-read
232is off.
233
5824d651
BS
234Instead of @option{-cdrom} you can use:
235@example
236qemu -drive file=file,index=2,media=cdrom
237@end example
238
239Instead of @option{-hda}, @option{-hdb}, @option{-hdc}, @option{-hdd}, you can
240use:
241@example
242qemu -drive file=file,index=0,media=disk
243qemu -drive file=file,index=1,media=disk
244qemu -drive file=file,index=2,media=disk
245qemu -drive file=file,index=3,media=disk
246@end example
247
248You can connect a CDROM to the slave of ide0:
249@example
250qemu -drive file=file,if=ide,index=1,media=cdrom
251@end example
252
253If you don't specify the "file=" argument, you define an empty drive:
254@example
255qemu -drive if=ide,index=1,media=cdrom
256@end example
257
258You can connect a SCSI disk with unit ID 6 on the bus #0:
259@example
260qemu -drive file=file,if=scsi,bus=0,unit=6
261@end example
262
263Instead of @option{-fda}, @option{-fdb}, you can use:
264@example
265qemu -drive file=file,index=0,if=floppy
266qemu -drive file=file,index=1,if=floppy
267@end example
268
269By default, @var{interface} is "ide" and @var{index} is automatically
270incremented:
271@example
272qemu -drive file=a -drive file=b"
273@end example
274is interpreted like:
275@example
276qemu -hda a -hdb b
277@end example
278ETEXI
279
6616b2ad
SW
280DEF("set", HAS_ARG, QEMU_OPTION_set,
281 "-set group.id.arg=value\n"
282 " set <arg> parameter for item <id> of type <group>\n"
ad96090a 283 " i.e. -set drive.$id.file=/path/to/image\n", QEMU_ARCH_ALL)
6616b2ad
SW
284STEXI
285@item -set
286@findex -set
287TODO
288ETEXI
289
290DEF("global", HAS_ARG, QEMU_OPTION_global,
291 "-global driver.property=value\n"
ad96090a
BS
292 " set a global default for a driver property\n",
293 QEMU_ARCH_ALL)
6616b2ad
SW
294STEXI
295@item -global
296@findex -global
297TODO
298ETEXI
299
5824d651 300DEF("mtdblock", HAS_ARG, QEMU_OPTION_mtdblock,
ad96090a
BS
301 "-mtdblock file use 'file' as on-board Flash memory image\n",
302 QEMU_ARCH_ALL)
5824d651 303STEXI
4e257e5e 304@item -mtdblock @var{file}
6616b2ad 305@findex -mtdblock
4e257e5e 306Use @var{file} as on-board Flash memory image.
5824d651
BS
307ETEXI
308
309DEF("sd", HAS_ARG, QEMU_OPTION_sd,
ad96090a 310 "-sd file use 'file' as SecureDigital card image\n", QEMU_ARCH_ALL)
5824d651 311STEXI
4e257e5e 312@item -sd @var{file}
6616b2ad 313@findex -sd
4e257e5e 314Use @var{file} as SecureDigital card image.
5824d651
BS
315ETEXI
316
317DEF("pflash", HAS_ARG, QEMU_OPTION_pflash,
ad96090a 318 "-pflash file use 'file' as a parallel flash image\n", QEMU_ARCH_ALL)
5824d651 319STEXI
4e257e5e 320@item -pflash @var{file}
6616b2ad 321@findex -pflash
4e257e5e 322Use @var{file} as a parallel flash image.
5824d651
BS
323ETEXI
324
325DEF("boot", HAS_ARG, QEMU_OPTION_boot,
2221dde5 326 "-boot [order=drives][,once=drives][,menu=on|off]\n"
3d3b8303 327 " [,splash=sp_name][,splash-time=sp_time]\n"
328 " 'drives': floppy (a), hard disk (c), CD-ROM (d), network (n)\n"
329 " 'sp_name': the file's name that would be passed to bios as logo picture, if menu=on\n"
330 " 'sp_time': the period that splash picture last if menu=on, unit is ms\n",
ad96090a 331 QEMU_ARCH_ALL)
5824d651 332STEXI
3d3b8303 333@item -boot [order=@var{drives}][,once=@var{drives}][,menu=on|off][,splash=@var{sp_name}][,splash-time=@var{sp_time}]
6616b2ad 334@findex -boot
2221dde5
JK
335Specify boot order @var{drives} as a string of drive letters. Valid
336drive letters depend on the target achitecture. The x86 PC uses: a, b
337(floppy 1 and 2), c (first hard disk), d (first CD-ROM), n-p (Etherboot
338from network adapter 1-4), hard disk boot is the default. To apply a
339particular boot order only on the first startup, specify it via
340@option{once}.
341
342Interactive boot menus/prompts can be enabled via @option{menu=on} as far
343as firmware/BIOS supports them. The default is non-interactive boot.
344
3d3b8303 345A splash picture could be passed to bios, enabling user to show it as logo,
346when option splash=@var{sp_name} is given and menu=on, If firmware/BIOS
347supports them. Currently Seabios for X86 system support it.
348limitation: The splash file could be a jpeg file or a BMP file in 24 BPP
349format(true color). The resolution should be supported by the SVGA mode, so
350the recommended is 320x240, 640x480, 800x640.
351
2221dde5
JK
352@example
353# try to boot from network first, then from hard disk
354qemu -boot order=nc
355# boot from CD-ROM first, switch back to default order after reboot
356qemu -boot once=d
3d3b8303 357# boot with a splash picture for 5 seconds.
358qemu -boot menu=on,splash=/root/boot.bmp,splash-time=5000
2221dde5
JK
359@end example
360
361Note: The legacy format '-boot @var{drives}' is still supported but its
362use is discouraged as it may be removed from future versions.
5824d651
BS
363ETEXI
364
365DEF("snapshot", 0, QEMU_OPTION_snapshot,
ad96090a
BS
366 "-snapshot write to temporary files instead of disk image files\n",
367 QEMU_ARCH_ALL)
5824d651
BS
368STEXI
369@item -snapshot
6616b2ad 370@findex -snapshot
5824d651
BS
371Write to temporary files instead of disk image files. In this case,
372the raw disk image you use is not written back. You can however force
373the write back by pressing @key{C-a s} (@pxref{disk_images}).
374ETEXI
375
376DEF("m", HAS_ARG, QEMU_OPTION_m,
bec7c2d4 377 "-m megs set virtual RAM size to megs MB [default="
ad96090a 378 stringify(DEFAULT_RAM_SIZE) "]\n", QEMU_ARCH_ALL)
5824d651
BS
379STEXI
380@item -m @var{megs}
6616b2ad 381@findex -m
5824d651
BS
382Set virtual RAM size to @var{megs} megabytes. Default is 128 MiB. Optionally,
383a suffix of ``M'' or ``G'' can be used to signify a value in megabytes or
384gigabytes respectively.
385ETEXI
386
c902760f 387DEF("mem-path", HAS_ARG, QEMU_OPTION_mempath,
ad96090a 388 "-mem-path FILE provide backing storage for guest RAM\n", QEMU_ARCH_ALL)
c902760f
MT
389STEXI
390@item -mem-path @var{path}
391Allocate guest RAM from a temporarily created file in @var{path}.
392ETEXI
393
394#ifdef MAP_POPULATE
395DEF("mem-prealloc", 0, QEMU_OPTION_mem_prealloc,
ad96090a
BS
396 "-mem-prealloc preallocate guest memory (use with -mem-path)\n",
397 QEMU_ARCH_ALL)
c902760f
MT
398STEXI
399@item -mem-prealloc
400Preallocate memory when using -mem-path.
401ETEXI
402#endif
403
5824d651 404DEF("k", HAS_ARG, QEMU_OPTION_k,
ad96090a
BS
405 "-k language use keyboard layout (for example 'fr' for French)\n",
406 QEMU_ARCH_ALL)
5824d651
BS
407STEXI
408@item -k @var{language}
6616b2ad 409@findex -k
5824d651
BS
410Use keyboard layout @var{language} (for example @code{fr} for
411French). This option is only needed where it is not easy to get raw PC
412keycodes (e.g. on Macs, with some X11 servers or with a VNC
413display). You don't normally need to use it on PC/Linux or PC/Windows
414hosts.
415
416The available layouts are:
417@example
418ar de-ch es fo fr-ca hu ja mk no pt-br sv
419da en-gb et fr fr-ch is lt nl pl ru th
420de en-us fi fr-be hr it lv nl-be pt sl tr
421@end example
422
423The default is @code{en-us}.
424ETEXI
425
426
5824d651 427DEF("audio-help", 0, QEMU_OPTION_audio_help,
ad96090a
BS
428 "-audio-help print list of audio drivers and their options\n",
429 QEMU_ARCH_ALL)
5824d651
BS
430STEXI
431@item -audio-help
6616b2ad 432@findex -audio-help
5824d651
BS
433Will show the audio subsystem help: list of drivers, tunable
434parameters.
435ETEXI
436
5824d651
BS
437DEF("soundhw", HAS_ARG, QEMU_OPTION_soundhw,
438 "-soundhw c1,... enable audio support\n"
439 " and only specified sound cards (comma separated list)\n"
440 " use -soundhw ? to get the list of supported cards\n"
ad96090a 441 " use -soundhw all to enable all of them\n", QEMU_ARCH_ALL)
5824d651
BS
442STEXI
443@item -soundhw @var{card1}[,@var{card2},...] or -soundhw all
6616b2ad 444@findex -soundhw
5824d651
BS
445Enable audio and selected sound hardware. Use ? to print all
446available sound hardware.
447
448@example
449qemu -soundhw sb16,adlib disk.img
450qemu -soundhw es1370 disk.img
451qemu -soundhw ac97 disk.img
7d72e762 452qemu -soundhw hda disk.img
5824d651
BS
453qemu -soundhw all disk.img
454qemu -soundhw ?
455@end example
456
457Note that Linux's i810_audio OSS kernel (for AC97) module might
458require manually specifying clocking.
459
460@example
461modprobe i810_audio clocking=48000
462@end example
463ETEXI
464
b1746ddd
ME
465DEF("balloon", HAS_ARG, QEMU_OPTION_balloon,
466 "-balloon none disable balloon device\n"
467 "-balloon virtio[,addr=str]\n"
468 " enable virtio balloon device (default)\n", QEMU_ARCH_ALL)
469STEXI
470@item -balloon none
471@findex -balloon
472Disable balloon device.
473@item -balloon virtio[,addr=@var{addr}]
474Enable virtio balloon device (default), optionally with PCI address
475@var{addr}.
476ETEXI
477
5824d651
BS
478STEXI
479@end table
480ETEXI
481
482DEF("usb", 0, QEMU_OPTION_usb,
ad96090a
BS
483 "-usb enable the USB driver (will be the default soon)\n",
484 QEMU_ARCH_ALL)
5824d651
BS
485STEXI
486USB options:
487@table @option
488
489@item -usb
6616b2ad 490@findex -usb
5824d651
BS
491Enable the USB driver (will be the default soon)
492ETEXI
493
494DEF("usbdevice", HAS_ARG, QEMU_OPTION_usbdevice,
ad96090a
BS
495 "-usbdevice name add the host or guest USB device 'name'\n",
496 QEMU_ARCH_ALL)
5824d651
BS
497STEXI
498
499@item -usbdevice @var{devname}
6616b2ad 500@findex -usbdevice
5824d651
BS
501Add the USB device @var{devname}. @xref{usb_devices}.
502
b3f046c2 503@table @option
5824d651
BS
504
505@item mouse
506Virtual Mouse. This will override the PS/2 mouse emulation when activated.
507
508@item tablet
509Pointer device that uses absolute coordinates (like a touchscreen). This
510means qemu is able to report the mouse position without having to grab the
511mouse. Also overrides the PS/2 mouse emulation when activated.
512
4e257e5e 513@item disk:[format=@var{format}]:@var{file}
5824d651
BS
514Mass storage device based on file. The optional @var{format} argument
515will be used rather than detecting the format. Can be used to specifiy
4e257e5e 516@code{format=raw} to avoid interpreting an untrusted format header.
5824d651 517
4e257e5e
KW
518@item host:@var{bus}.@var{addr}
519Pass through the host device identified by @var{bus}.@var{addr} (Linux only).
5824d651 520
4e257e5e
KW
521@item host:@var{vendor_id}:@var{product_id}
522Pass through the host device identified by @var{vendor_id}:@var{product_id}
523(Linux only).
5824d651
BS
524
525@item serial:[vendorid=@var{vendor_id}][,productid=@var{product_id}]:@var{dev}
526Serial converter to host character device @var{dev}, see @code{-serial} for the
527available devices.
528
529@item braille
530Braille device. This will use BrlAPI to display the braille output on a real
531or fake device.
532
4e257e5e 533@item net:@var{options}
5824d651
BS
534Network adapter that supports CDC ethernet and RNDIS protocols.
535
536@end table
537ETEXI
538
bd3c948d 539DEF("device", HAS_ARG, QEMU_OPTION_device,
40ea285c
MA
540 "-device driver[,prop[=value][,...]]\n"
541 " add device (based on driver)\n"
542 " prop=value,... sets driver properties\n"
69a319d1 543 " use -device ? to print all possible drivers\n"
9848bbf1 544 " use -device driver,? to print all possible properties\n",
ad96090a 545 QEMU_ARCH_ALL)
3dbf2c7f 546STEXI
9848bbf1 547@item -device @var{driver}[,@var{prop}[=@var{value}][,...]]
6616b2ad 548@findex -device
9848bbf1
MA
549Add device @var{driver}. @var{prop}=@var{value} sets driver
550properties. Valid properties depend on the driver. To get help on
551possible drivers and properties, use @code{-device ?} and
552@code{-device @var{driver},?}.
3dbf2c7f
SW
553ETEXI
554
7c92a3d2
AK
555DEFHEADING()
556
74db920c
GS
557DEFHEADING(File system options:)
558
559DEF("fsdev", HAS_ARG, QEMU_OPTION_fsdev,
f67e3ffd 560 "-fsdev fsdriver,id=id[,path=path,][security_model={mapped|passthrough|none}]\n"
84a87cc4 561 " [,writeout=immediate][,readonly][,socket=socket|sock_fd=sock_fd]\n",
74db920c
GS
562 QEMU_ARCH_ALL)
563
564STEXI
565
84a87cc4 566@item -fsdev @var{fsdriver},id=@var{id},path=@var{path},[security_model=@var{security_model}][,writeout=@var{writeout}][,readonly][,socket=@var{socket}|sock_fd=@var{sock_fd}]
74db920c 567@findex -fsdev
7c92a3d2
AK
568Define a new file system device. Valid options are:
569@table @option
570@item @var{fsdriver}
571This option specifies the fs driver backend to use.
f67e3ffd 572Currently "local", "handle" and "proxy" file system drivers are supported.
7c92a3d2
AK
573@item id=@var{id}
574Specifies identifier for this device
575@item path=@var{path}
576Specifies the export path for the file system device. Files under
577this path will be available to the 9p client on the guest.
578@item security_model=@var{security_model}
579Specifies the security model to be used for this export path.
580Supported security models are "passthrough", "mapped" and "none".
581In "passthrough" security model, files are stored using the same
582credentials as they are created on the guest. This requires qemu
583to run as root. In "mapped" security model, some of the file
584attributes like uid, gid, mode bits and link target are stored as
585file attributes. Directories exported by this security model cannot
586interact with other unix tools. "none" security model is same as
587passthrough except the sever won't report failures if it fails to
d9b36a6e 588set file attributes like ownership. Security model is mandatory
f67e3ffd 589only for local fsdriver. Other fsdrivers (like handle, proxy) don't take
d9b36a6e 590security model as a parameter.
7c92a3d2
AK
591@item writeout=@var{writeout}
592This is an optional argument. The only supported value is "immediate".
593This means that host page cache will be used to read and write data but
594write notification will be sent to the guest only when the data has been
595reported as written by the storage subsystem.
2c74c2cb
MK
596@item readonly
597Enables exporting 9p share as a readonly mount for guests. By default
598read-write access is given.
84a87cc4
MK
599@item socket=@var{socket}
600Enables proxy filesystem driver to use passed socket file for communicating
601with virtfs-proxy-helper
f67e3ffd
MK
602@item sock_fd=@var{sock_fd}
603Enables proxy filesystem driver to use passed socket descriptor for
604communicating with virtfs-proxy-helper. Usually a helper like libvirt
605will create socketpair and pass one of the fds as sock_fd
7c92a3d2 606@end table
9ce56db6 607
7c92a3d2
AK
608-fsdev option is used along with -device driver "virtio-9p-pci".
609@item -device virtio-9p-pci,fsdev=@var{id},mount_tag=@var{mount_tag}
610Options for virtio-9p-pci driver are:
611@table @option
612@item fsdev=@var{id}
613Specifies the id value specified along with -fsdev option
614@item mount_tag=@var{mount_tag}
615Specifies the tag name to be used by the guest to mount this export point
74db920c 616@end table
7c92a3d2 617
74db920c 618ETEXI
74db920c 619
7c92a3d2
AK
620DEFHEADING()
621
3d54abc7
GS
622DEFHEADING(Virtual File system pass-through options:)
623
624DEF("virtfs", HAS_ARG, QEMU_OPTION_virtfs,
d3ab98e6 625 "-virtfs local,path=path,mount_tag=tag,security_model=[mapped|passthrough|none]\n"
84a87cc4 626 " [,writeout=immediate][,readonly][,socket=socket|sock_fd=sock_fd]\n",
3d54abc7
GS
627 QEMU_ARCH_ALL)
628
629STEXI
630
84a87cc4 631@item -virtfs @var{fsdriver}[,path=@var{path}],mount_tag=@var{mount_tag}[,security_model=@var{security_model}][,writeout=@var{writeout}][,readonly][,socket=@var{socket}|sock_fd=@var{sock_fd}]
3d54abc7 632@findex -virtfs
3d54abc7 633
7c92a3d2
AK
634The general form of a Virtual File system pass-through options are:
635@table @option
636@item @var{fsdriver}
637This option specifies the fs driver backend to use.
f67e3ffd 638Currently "local", "handle" and "proxy" file system drivers are supported.
7c92a3d2
AK
639@item id=@var{id}
640Specifies identifier for this device
641@item path=@var{path}
642Specifies the export path for the file system device. Files under
643this path will be available to the 9p client on the guest.
644@item security_model=@var{security_model}
645Specifies the security model to be used for this export path.
646Supported security models are "passthrough", "mapped" and "none".
647In "passthrough" security model, files are stored using the same
648credentials as they are created on the guest. This requires qemu
649to run as root. In "mapped" security model, some of the file
650attributes like uid, gid, mode bits and link target are stored as
651file attributes. Directories exported by this security model cannot
652interact with other unix tools. "none" security model is same as
653passthrough except the sever won't report failures if it fails to
d9b36a6e 654set file attributes like ownership. Security model is mandatory only
f67e3ffd 655for local fsdriver. Other fsdrivers (like handle, proxy) don't take security
d9b36a6e 656model as a parameter.
7c92a3d2
AK
657@item writeout=@var{writeout}
658This is an optional argument. The only supported value is "immediate".
659This means that host page cache will be used to read and write data but
660write notification will be sent to the guest only when the data has been
661reported as written by the storage subsystem.
2c74c2cb
MK
662@item readonly
663Enables exporting 9p share as a readonly mount for guests. By default
664read-write access is given.
84a87cc4
MK
665@item socket=@var{socket}
666Enables proxy filesystem driver to use passed socket file for
667communicating with virtfs-proxy-helper. Usually a helper like libvirt
668will create socketpair and pass one of the fds as sock_fd
f67e3ffd
MK
669@item sock_fd
670Enables proxy filesystem driver to use passed 'sock_fd' as the socket
671descriptor for interfacing with virtfs-proxy-helper
3d54abc7
GS
672@end table
673ETEXI
3d54abc7 674
9db221ae
AK
675DEF("virtfs_synth", 0, QEMU_OPTION_virtfs_synth,
676 "-virtfs_synth Create synthetic file system image\n",
677 QEMU_ARCH_ALL)
678STEXI
679@item -virtfs_synth
680@findex -virtfs_synth
681Create synthetic file system image
682ETEXI
683
74db920c
GS
684DEFHEADING()
685
5824d651 686DEF("name", HAS_ARG, QEMU_OPTION_name,
ca1a8a06
BR
687 "-name string1[,process=string2]\n"
688 " set the name of the guest\n"
ad96090a
BS
689 " string1 sets the window title and string2 the process name (on Linux)\n",
690 QEMU_ARCH_ALL)
5824d651
BS
691STEXI
692@item -name @var{name}
6616b2ad 693@findex -name
5824d651
BS
694Sets the @var{name} of the guest.
695This name will be displayed in the SDL window caption.
696The @var{name} will also be used for the VNC server.
1889465a 697Also optionally set the top visible process name in Linux.
5824d651
BS
698ETEXI
699
700DEF("uuid", HAS_ARG, QEMU_OPTION_uuid,
e8105ebb 701 "-uuid %08x-%04x-%04x-%04x-%012x\n"
ad96090a 702 " specify machine UUID\n", QEMU_ARCH_ALL)
5824d651
BS
703STEXI
704@item -uuid @var{uuid}
6616b2ad 705@findex -uuid
5824d651
BS
706Set system UUID.
707ETEXI
708
709STEXI
710@end table
711ETEXI
712
713DEFHEADING()
714
715DEFHEADING(Display options:)
716
717STEXI
718@table @option
719ETEXI
720
1472a95b
JS
721DEF("display", HAS_ARG, QEMU_OPTION_display,
722 "-display sdl[,frame=on|off][,alt_grab=on|off][,ctrl_grab=on|off]\n"
3264ff12
JS
723 " [,window_close=on|off]|curses|none|\n"
724 " vnc=<display>[,<optargs>]\n"
1472a95b
JS
725 " select display type\n", QEMU_ARCH_ALL)
726STEXI
727@item -display @var{type}
728@findex -display
729Select type of display to use. This option is a replacement for the
730old style -sdl/-curses/... options. Valid values for @var{type} are
731@table @option
732@item sdl
733Display video output via SDL (usually in a separate graphics
734window; see the SDL documentation for other possibilities).
735@item curses
736Display video output via curses. For graphics device models which
737support a text mode, QEMU can display this output using a
738curses/ncurses interface. Nothing is displayed when the graphics
739device is in graphical mode or if the graphics device does not support
740a text mode. Generally only the VGA device models support text mode.
4171d32e
JS
741@item none
742Do not display video output. The guest will still see an emulated
743graphics card, but its output will not be displayed to the QEMU
744user. This option differs from the -nographic option in that it
745only affects what is done with video output; -nographic also changes
746the destination of the serial and parallel port data.
3264ff12
JS
747@item vnc
748Start a VNC server on display <arg>
1472a95b
JS
749@end table
750ETEXI
751
5824d651 752DEF("nographic", 0, QEMU_OPTION_nographic,
ad96090a
BS
753 "-nographic disable graphical output and redirect serial I/Os to console\n",
754 QEMU_ARCH_ALL)
5824d651
BS
755STEXI
756@item -nographic
6616b2ad 757@findex -nographic
5824d651
BS
758Normally, QEMU uses SDL to display the VGA output. With this option,
759you can totally disable graphical output so that QEMU is a simple
760command line application. The emulated serial port is redirected on
761the console. Therefore, you can still use QEMU to debug a Linux kernel
762with a serial console.
763ETEXI
764
5824d651 765DEF("curses", 0, QEMU_OPTION_curses,
ad96090a
BS
766 "-curses use a curses/ncurses interface instead of SDL\n",
767 QEMU_ARCH_ALL)
5824d651
BS
768STEXI
769@item -curses
6616b2ad 770@findex curses
5824d651
BS
771Normally, QEMU uses SDL to display the VGA output. With this option,
772QEMU can display the VGA output when in text mode using a
773curses/ncurses interface. Nothing is displayed in graphical mode.
774ETEXI
775
5824d651 776DEF("no-frame", 0, QEMU_OPTION_no_frame,
ad96090a
BS
777 "-no-frame open SDL window without a frame and window decorations\n",
778 QEMU_ARCH_ALL)
5824d651
BS
779STEXI
780@item -no-frame
6616b2ad 781@findex -no-frame
5824d651
BS
782Do not use decorations for SDL windows and start them using the whole
783available screen space. This makes the using QEMU in a dedicated desktop
784workspace more convenient.
785ETEXI
786
5824d651 787DEF("alt-grab", 0, QEMU_OPTION_alt_grab,
ad96090a
BS
788 "-alt-grab use Ctrl-Alt-Shift to grab mouse (instead of Ctrl-Alt)\n",
789 QEMU_ARCH_ALL)
5824d651
BS
790STEXI
791@item -alt-grab
6616b2ad 792@findex -alt-grab
de1db2a1
BH
793Use Ctrl-Alt-Shift to grab mouse (instead of Ctrl-Alt). Note that this also
794affects the special keys (for fullscreen, monitor-mode switching, etc).
5824d651
BS
795ETEXI
796
0ca9f8a4 797DEF("ctrl-grab", 0, QEMU_OPTION_ctrl_grab,
ad96090a
BS
798 "-ctrl-grab use Right-Ctrl to grab mouse (instead of Ctrl-Alt)\n",
799 QEMU_ARCH_ALL)
0ca9f8a4
DK
800STEXI
801@item -ctrl-grab
6616b2ad 802@findex -ctrl-grab
de1db2a1
BH
803Use Right-Ctrl to grab mouse (instead of Ctrl-Alt). Note that this also
804affects the special keys (for fullscreen, monitor-mode switching, etc).
0ca9f8a4
DK
805ETEXI
806
5824d651 807DEF("no-quit", 0, QEMU_OPTION_no_quit,
ad96090a 808 "-no-quit disable SDL window close capability\n", QEMU_ARCH_ALL)
5824d651
BS
809STEXI
810@item -no-quit
6616b2ad 811@findex -no-quit
5824d651
BS
812Disable SDL window close capability.
813ETEXI
814
5824d651 815DEF("sdl", 0, QEMU_OPTION_sdl,
ad96090a 816 "-sdl enable SDL\n", QEMU_ARCH_ALL)
5824d651
BS
817STEXI
818@item -sdl
6616b2ad 819@findex -sdl
5824d651
BS
820Enable SDL.
821ETEXI
822
29b0040b
GH
823DEF("spice", HAS_ARG, QEMU_OPTION_spice,
824 "-spice <args> enable spice\n", QEMU_ARCH_ALL)
825STEXI
826@item -spice @var{option}[,@var{option}[,...]]
827@findex -spice
828Enable the spice remote desktop protocol. Valid options are
829
830@table @option
831
832@item port=<nr>
c448e855 833Set the TCP port spice is listening on for plaintext channels.
29b0040b 834
333b0eeb
GH
835@item addr=<addr>
836Set the IP address spice is listening on. Default is any address.
837
838@item ipv4
839@item ipv6
840Force using the specified IP version.
841
29b0040b
GH
842@item password=<secret>
843Set the password you need to authenticate.
844
48b3ed0a
MAL
845@item sasl
846Require that the client use SASL to authenticate with the spice.
847The exact choice of authentication method used is controlled from the
848system / user's SASL configuration file for the 'qemu' service. This
849is typically found in /etc/sasl2/qemu.conf. If running QEMU as an
850unprivileged user, an environment variable SASL_CONF_PATH can be used
851to make it search alternate locations for the service config.
852While some SASL auth methods can also provide data encryption (eg GSSAPI),
853it is recommended that SASL always be combined with the 'tls' and
854'x509' settings to enable use of SSL and server certificates. This
855ensures a data encryption preventing compromise of authentication
856credentials.
857
29b0040b
GH
858@item disable-ticketing
859Allow client connects without authentication.
860
d4970b07
HG
861@item disable-copy-paste
862Disable copy paste between the client and the guest.
863
c448e855
GH
864@item tls-port=<nr>
865Set the TCP port spice is listening on for encrypted channels.
866
867@item x509-dir=<dir>
868Set the x509 file directory. Expects same filenames as -vnc $display,x509=$dir
869
870@item x509-key-file=<file>
871@item x509-key-password=<file>
872@item x509-cert-file=<file>
873@item x509-cacert-file=<file>
874@item x509-dh-key-file=<file>
875The x509 file names can also be configured individually.
876
877@item tls-ciphers=<list>
878Specify which ciphers to use.
879
d70d6b31
AL
880@item tls-channel=[main|display|cursor|inputs|record|playback]
881@item plaintext-channel=[main|display|cursor|inputs|record|playback]
17b6dea0
GH
882Force specific channel to be used with or without TLS encryption. The
883options can be specified multiple times to configure multiple
884channels. The special name "default" can be used to set the default
885mode. For channels which are not explicitly forced into one mode the
886spice client is allowed to pick tls/plaintext as he pleases.
887
9f04e09e
YH
888@item image-compression=[auto_glz|auto_lz|quic|glz|lz|off]
889Configure image compression (lossless).
890Default is auto_glz.
891
892@item jpeg-wan-compression=[auto|never|always]
893@item zlib-glz-wan-compression=[auto|never|always]
894Configure wan image compression (lossy for slow links).
895Default is auto.
896
84a23f25
GH
897@item streaming-video=[off|all|filter]
898Configure video stream detection. Default is filter.
899
900@item agent-mouse=[on|off]
901Enable/disable passing mouse events via vdagent. Default is on.
902
903@item playback-compression=[on|off]
904Enable/disable audio stream compression (using celt 0.5.1). Default is on.
905
29b0040b
GH
906@end table
907ETEXI
908
5824d651 909DEF("portrait", 0, QEMU_OPTION_portrait,
ad96090a
BS
910 "-portrait rotate graphical output 90 deg left (only PXA LCD)\n",
911 QEMU_ARCH_ALL)
5824d651
BS
912STEXI
913@item -portrait
6616b2ad 914@findex -portrait
5824d651
BS
915Rotate graphical output 90 deg left (only PXA LCD).
916ETEXI
917
9312805d
VK
918DEF("rotate", HAS_ARG, QEMU_OPTION_rotate,
919 "-rotate <deg> rotate graphical output some deg left (only PXA LCD)\n",
920 QEMU_ARCH_ALL)
921STEXI
922@item -rotate
923@findex -rotate
924Rotate graphical output some deg left (only PXA LCD).
925ETEXI
926
5824d651 927DEF("vga", HAS_ARG, QEMU_OPTION_vga,
a19cbfb3 928 "-vga [std|cirrus|vmware|qxl|xenfb|none]\n"
ad96090a 929 " select video card type\n", QEMU_ARCH_ALL)
5824d651
BS
930STEXI
931@item -vga @var{type}
6616b2ad 932@findex -vga
5824d651 933Select type of VGA card to emulate. Valid values for @var{type} are
b3f046c2 934@table @option
5824d651
BS
935@item cirrus
936Cirrus Logic GD5446 Video card. All Windows versions starting from
937Windows 95 should recognize and use this graphic card. For optimal
938performances, use 16 bit color depth in the guest and the host OS.
939(This one is the default)
940@item std
941Standard VGA card with Bochs VBE extensions. If your guest OS
942supports the VESA 2.0 VBE extensions (e.g. Windows XP) and if you want
943to use high resolution modes (>= 1280x1024x16) then you should use
944this option.
945@item vmware
946VMWare SVGA-II compatible adapter. Use it if you have sufficiently
947recent XFree86/XOrg server or Windows guest with a driver for this
948card.
a19cbfb3
GH
949@item qxl
950QXL paravirtual graphic card. It is VGA compatible (including VESA
9512.0 VBE support). Works best with qxl guest drivers installed though.
952Recommended choice when using the spice protocol.
5824d651
BS
953@item none
954Disable VGA card.
955@end table
956ETEXI
957
958DEF("full-screen", 0, QEMU_OPTION_full_screen,
ad96090a 959 "-full-screen start in full screen\n", QEMU_ARCH_ALL)
5824d651
BS
960STEXI
961@item -full-screen
6616b2ad 962@findex -full-screen
5824d651
BS
963Start in full screen.
964ETEXI
965
5824d651 966DEF("g", 1, QEMU_OPTION_g ,
ad96090a
BS
967 "-g WxH[xDEPTH] Set the initial graphical resolution and depth\n",
968 QEMU_ARCH_PPC | QEMU_ARCH_SPARC)
5824d651 969STEXI
95d5f08b 970@item -g @var{width}x@var{height}[x@var{depth}]
6616b2ad 971@findex -g
95d5f08b 972Set the initial graphical resolution and depth (PPC, SPARC only).
5824d651
BS
973ETEXI
974
975DEF("vnc", HAS_ARG, QEMU_OPTION_vnc ,
ad96090a 976 "-vnc display start a VNC server on display\n", QEMU_ARCH_ALL)
5824d651
BS
977STEXI
978@item -vnc @var{display}[,@var{option}[,@var{option}[,...]]]
6616b2ad 979@findex -vnc
5824d651
BS
980Normally, QEMU uses SDL to display the VGA output. With this option,
981you can have QEMU listen on VNC display @var{display} and redirect the VGA
982display over the VNC session. It is very useful to enable the usb
983tablet device when using this option (option @option{-usbdevice
984tablet}). When using the VNC display, you must use the @option{-k}
985parameter to set the keyboard layout if you are not using en-us. Valid
986syntax for the @var{display} is
987
b3f046c2 988@table @option
5824d651
BS
989
990@item @var{host}:@var{d}
991
992TCP connections will only be allowed from @var{host} on display @var{d}.
993By convention the TCP port is 5900+@var{d}. Optionally, @var{host} can
994be omitted in which case the server will accept connections from any host.
995
4e257e5e 996@item unix:@var{path}
5824d651
BS
997
998Connections will be allowed over UNIX domain sockets where @var{path} is the
999location of a unix socket to listen for connections on.
1000
1001@item none
1002
1003VNC is initialized but not started. The monitor @code{change} command
1004can be used to later start the VNC server.
1005
1006@end table
1007
1008Following the @var{display} value there may be one or more @var{option} flags
1009separated by commas. Valid options are
1010
b3f046c2 1011@table @option
5824d651
BS
1012
1013@item reverse
1014
1015Connect to a listening VNC client via a ``reverse'' connection. The
1016client is specified by the @var{display}. For reverse network
1017connections (@var{host}:@var{d},@code{reverse}), the @var{d} argument
1018is a TCP port number, not a display number.
1019
1020@item password
1021
1022Require that password based authentication is used for client connections.
1023The password must be set separately using the @code{change} command in the
1024@ref{pcsys_monitor}
1025
1026@item tls
1027
1028Require that client use TLS when communicating with the VNC server. This
1029uses anonymous TLS credentials so is susceptible to a man-in-the-middle
1030attack. It is recommended that this option be combined with either the
4e257e5e 1031@option{x509} or @option{x509verify} options.
5824d651
BS
1032
1033@item x509=@var{/path/to/certificate/dir}
1034
1035Valid if @option{tls} is specified. Require that x509 credentials are used
1036for negotiating the TLS session. The server will send its x509 certificate
1037to the client. It is recommended that a password be set on the VNC server
1038to provide authentication of the client when this is used. The path following
1039this option specifies where the x509 certificates are to be loaded from.
1040See the @ref{vnc_security} section for details on generating certificates.
1041
1042@item x509verify=@var{/path/to/certificate/dir}
1043
1044Valid if @option{tls} is specified. Require that x509 credentials are used
1045for negotiating the TLS session. The server will send its x509 certificate
1046to the client, and request that the client send its own x509 certificate.
1047The server will validate the client's certificate against the CA certificate,
1048and reject clients when validation fails. If the certificate authority is
1049trusted, this is a sufficient authentication mechanism. You may still wish
1050to set a password on the VNC server as a second authentication layer. The
1051path following this option specifies where the x509 certificates are to
1052be loaded from. See the @ref{vnc_security} section for details on generating
1053certificates.
1054
1055@item sasl
1056
1057Require that the client use SASL to authenticate with the VNC server.
1058The exact choice of authentication method used is controlled from the
1059system / user's SASL configuration file for the 'qemu' service. This
1060is typically found in /etc/sasl2/qemu.conf. If running QEMU as an
1061unprivileged user, an environment variable SASL_CONF_PATH can be used
1062to make it search alternate locations for the service config.
1063While some SASL auth methods can also provide data encryption (eg GSSAPI),
1064it is recommended that SASL always be combined with the 'tls' and
1065'x509' settings to enable use of SSL and server certificates. This
1066ensures a data encryption preventing compromise of authentication
1067credentials. See the @ref{vnc_security} section for details on using
1068SASL authentication.
1069
1070@item acl
1071
1072Turn on access control lists for checking of the x509 client certificate
1073and SASL party. For x509 certs, the ACL check is made against the
1074certificate's distinguished name. This is something that looks like
1075@code{C=GB,O=ACME,L=Boston,CN=bob}. For SASL party, the ACL check is
1076made against the username, which depending on the SASL plugin, may
1077include a realm component, eg @code{bob} or @code{bob@@EXAMPLE.COM}.
1078When the @option{acl} flag is set, the initial access list will be
1079empty, with a @code{deny} policy. Thus no one will be allowed to
1080use the VNC server until the ACLs have been loaded. This can be
1081achieved using the @code{acl} monitor command.
1082
6f9c78c1
CC
1083@item lossy
1084
1085Enable lossy compression methods (gradient, JPEG, ...). If this
1086option is set, VNC client may receive lossy framebuffer updates
1087depending on its encoding settings. Enabling this option can save
1088a lot of bandwidth at the expense of quality.
1089
80e0c8c3
CC
1090@item non-adaptive
1091
1092Disable adaptive encodings. Adaptive encodings are enabled by default.
1093An adaptive encoding will try to detect frequently updated screen regions,
1094and send updates in these regions using a lossy encoding (like JPEG).
61cc8701
SW
1095This can be really helpful to save bandwidth when playing videos. Disabling
1096adaptive encodings allows to restore the original static behavior of encodings
80e0c8c3
CC
1097like Tight.
1098
5824d651
BS
1099@end table
1100ETEXI
1101
1102STEXI
1103@end table
1104ETEXI
1105
a3adb7ad 1106ARCHHEADING(, QEMU_ARCH_I386)
5824d651 1107
a3adb7ad 1108ARCHHEADING(i386 target only:, QEMU_ARCH_I386)
5824d651
BS
1109STEXI
1110@table @option
1111ETEXI
1112
5824d651 1113DEF("win2k-hack", 0, QEMU_OPTION_win2k_hack,
ad96090a
BS
1114 "-win2k-hack use it when installing Windows 2000 to avoid a disk full bug\n",
1115 QEMU_ARCH_I386)
5824d651
BS
1116STEXI
1117@item -win2k-hack
6616b2ad 1118@findex -win2k-hack
5824d651
BS
1119Use it when installing Windows 2000 to avoid a disk full bug. After
1120Windows 2000 is installed, you no longer need this option (this option
1121slows down the IDE transfers).
1122ETEXI
1123
1ed2fc1f 1124HXCOMM Deprecated by -rtc
ad96090a 1125DEF("rtc-td-hack", 0, QEMU_OPTION_rtc_td_hack, "", QEMU_ARCH_I386)
5824d651 1126
5824d651 1127DEF("no-fd-bootchk", 0, QEMU_OPTION_no_fd_bootchk,
ad96090a
BS
1128 "-no-fd-bootchk disable boot signature checking for floppy disks\n",
1129 QEMU_ARCH_I386)
5824d651
BS
1130STEXI
1131@item -no-fd-bootchk
6616b2ad 1132@findex -no-fd-bootchk
5824d651
BS
1133Disable boot signature checking for floppy disks in Bochs BIOS. It may
1134be needed to boot from old floppy disks.
6616b2ad 1135TODO: check reference to Bochs BIOS.
5824d651
BS
1136ETEXI
1137
5824d651 1138DEF("no-acpi", 0, QEMU_OPTION_no_acpi,
ad96090a 1139 "-no-acpi disable ACPI\n", QEMU_ARCH_I386)
5824d651
BS
1140STEXI
1141@item -no-acpi
6616b2ad 1142@findex -no-acpi
5824d651
BS
1143Disable ACPI (Advanced Configuration and Power Interface) support. Use
1144it if your guest OS complains about ACPI problems (PC target machine
1145only).
1146ETEXI
1147
5824d651 1148DEF("no-hpet", 0, QEMU_OPTION_no_hpet,
ad96090a 1149 "-no-hpet disable HPET\n", QEMU_ARCH_I386)
5824d651
BS
1150STEXI
1151@item -no-hpet
6616b2ad 1152@findex -no-hpet
5824d651
BS
1153Disable HPET support.
1154ETEXI
1155
5824d651 1156DEF("acpitable", HAS_ARG, QEMU_OPTION_acpitable,
104bf02e 1157 "-acpitable [sig=str][,rev=n][,oem_id=str][,oem_table_id=str][,oem_rev=n][,asl_compiler_id=str][,asl_compiler_rev=n][,{data|file}=file1[:file2]...]\n"
ad96090a 1158 " ACPI table description\n", QEMU_ARCH_I386)
5824d651
BS
1159STEXI
1160@item -acpitable [sig=@var{str}][,rev=@var{n}][,oem_id=@var{str}][,oem_table_id=@var{str}][,oem_rev=@var{n}] [,asl_compiler_id=@var{str}][,asl_compiler_rev=@var{n}][,data=@var{file1}[:@var{file2}]...]
6616b2ad 1161@findex -acpitable
5824d651 1162Add ACPI table with specified header fields and context from specified files.
104bf02e
MT
1163For file=, take whole ACPI table from the specified files, including all
1164ACPI headers (possible overridden by other options).
1165For data=, only data
1166portion of the table is used, all header information is specified in the
1167command line.
5824d651
BS
1168ETEXI
1169
b6f6e3d3
AL
1170DEF("smbios", HAS_ARG, QEMU_OPTION_smbios,
1171 "-smbios file=binary\n"
ca1a8a06 1172 " load SMBIOS entry from binary file\n"
e8105ebb 1173 "-smbios type=0[,vendor=str][,version=str][,date=str][,release=%d.%d]\n"
ca1a8a06 1174 " specify SMBIOS type 0 fields\n"
b6f6e3d3
AL
1175 "-smbios type=1[,manufacturer=str][,product=str][,version=str][,serial=str]\n"
1176 " [,uuid=uuid][,sku=str][,family=str]\n"
ad96090a 1177 " specify SMBIOS type 1 fields\n", QEMU_ARCH_I386)
b6f6e3d3
AL
1178STEXI
1179@item -smbios file=@var{binary}
6616b2ad 1180@findex -smbios
b6f6e3d3
AL
1181Load SMBIOS entry from binary file.
1182
1183@item -smbios type=0[,vendor=@var{str}][,version=@var{str}][,date=@var{str}][,release=@var{%d.%d}]
6616b2ad 1184@findex -smbios
b6f6e3d3
AL
1185Specify SMBIOS type 0 fields
1186
609c1dac 1187@item -smbios type=1[,manufacturer=@var{str}][,product=@var{str}] [,version=@var{str}][,serial=@var{str}][,uuid=@var{uuid}][,sku=@var{str}] [,family=@var{str}]
b6f6e3d3
AL
1188Specify SMBIOS type 1 fields
1189ETEXI
1190
5824d651 1191DEFHEADING()
5824d651
BS
1192STEXI
1193@end table
1194ETEXI
1195
1196DEFHEADING(Network options:)
1197STEXI
1198@table @option
1199ETEXI
1200
ad196a9d
JK
1201HXCOMM Legacy slirp options (now moved to -net user):
1202#ifdef CONFIG_SLIRP
ad96090a
BS
1203DEF("tftp", HAS_ARG, QEMU_OPTION_tftp, "", QEMU_ARCH_ALL)
1204DEF("bootp", HAS_ARG, QEMU_OPTION_bootp, "", QEMU_ARCH_ALL)
1205DEF("redir", HAS_ARG, QEMU_OPTION_redir, "", QEMU_ARCH_ALL)
ad196a9d 1206#ifndef _WIN32
ad96090a 1207DEF("smb", HAS_ARG, QEMU_OPTION_smb, "", QEMU_ARCH_ALL)
ad196a9d
JK
1208#endif
1209#endif
1210
bab7944c 1211DEF("net", HAS_ARG, QEMU_OPTION_net,
ffe6370c 1212 "-net nic[,vlan=n][,macaddr=mac][,model=type][,name=str][,addr=str][,vectors=v]\n"
5824d651
BS
1213 " create a new Network Interface Card and connect it to VLAN 'n'\n"
1214#ifdef CONFIG_SLIRP
c54ed5bc 1215 "-net user[,vlan=n][,name=str][,net=addr[/mask]][,host=addr][,restrict=on|off]\n"
c92ef6a2
JK
1216 " [,hostname=host][,dhcpstart=addr][,dns=addr][,tftp=dir][,bootfile=f]\n"
1217 " [,hostfwd=rule][,guestfwd=rule]"
ad196a9d 1218#ifndef _WIN32
c92ef6a2 1219 "[,smb=dir[,smbserver=addr]]\n"
ad196a9d
JK
1220#endif
1221 " connect the user mode network stack to VLAN 'n', configure its\n"
1222 " DHCP server and enabled optional services\n"
5824d651
BS
1223#endif
1224#ifdef _WIN32
1225 "-net tap[,vlan=n][,name=str],ifname=name\n"
1226 " connect the host TAP network interface to VLAN 'n'\n"
1227#else
a7c36ee4
CB
1228 "-net tap[,vlan=n][,name=str][,fd=h][,ifname=name][,script=file][,downscript=dfile][,helper=helper][,sndbuf=nbytes][,vnet_hdr=on|off][,vhost=on|off][,vhostfd=h][,vhostforce=on|off]\n"
1229 " connect the host TAP network interface to VLAN 'n' \n"
1230 " use network scripts 'file' (default=" DEFAULT_NETWORK_SCRIPT ")\n"
1231 " to configure it and 'dfile' (default=" DEFAULT_NETWORK_DOWN_SCRIPT ")\n"
1232 " to deconfigure it\n"
ca1a8a06 1233 " use '[down]script=no' to disable script execution\n"
a7c36ee4
CB
1234 " use network helper 'helper' (default=" DEFAULT_BRIDGE_HELPER ") to\n"
1235 " configure it\n"
5824d651 1236 " use 'fd=h' to connect to an already opened TAP interface\n"
ca1a8a06 1237 " use 'sndbuf=nbytes' to limit the size of the send buffer (the\n"
f157ed20 1238 " default is disabled 'sndbuf=0' to enable flow control set 'sndbuf=1048576')\n"
ca1a8a06
BR
1239 " use vnet_hdr=off to avoid enabling the IFF_VNET_HDR tap flag\n"
1240 " use vnet_hdr=on to make the lack of IFF_VNET_HDR support an error condition\n"
82b0d80e 1241 " use vhost=on to enable experimental in kernel accelerator\n"
5430a28f 1242 " (only has effect for virtio guests which use MSIX)\n"
1243 " use vhostforce=on to force vhost on for non-MSIX virtio guests\n"
82b0d80e 1244 " use 'vhostfd=h' to connect to an already opened vhost net device\n"
a7c36ee4
CB
1245 "-net bridge[,vlan=n][,name=str][,br=bridge][,helper=helper]\n"
1246 " connects a host TAP network interface to a host bridge device 'br'\n"
1247 " (default=" DEFAULT_BRIDGE_INTERFACE ") using the program 'helper'\n"
1248 " (default=" DEFAULT_BRIDGE_HELPER ")\n"
5824d651
BS
1249#endif
1250 "-net socket[,vlan=n][,name=str][,fd=h][,listen=[host]:port][,connect=host:port]\n"
1251 " connect the vlan 'n' to another VLAN using a socket connection\n"
3a75e74c 1252 "-net socket[,vlan=n][,name=str][,fd=h][,mcast=maddr:port[,localaddr=addr]]\n"
5824d651 1253 " connect the vlan 'n' to multicast maddr and port\n"
3a75e74c 1254 " use 'localaddr=addr' to specify the host address to send packets from\n"
0e0e7fac
B
1255 "-net socket[,vlan=n][,name=str][,fd=h][,udp=host:port][,localaddr=host:port]\n"
1256 " connect the vlan 'n' to another VLAN using an UDP tunnel\n"
5824d651
BS
1257#ifdef CONFIG_VDE
1258 "-net vde[,vlan=n][,name=str][,sock=socketpath][,port=n][,group=groupname][,mode=octalmode]\n"
1259 " connect the vlan 'n' to port 'n' of a vde switch running\n"
1260 " on host and listening for incoming connections on 'socketpath'.\n"
1261 " Use group 'groupname' and mode 'octalmode' to change default\n"
1262 " ownership and permissions for communication port.\n"
1263#endif
bb9ea79e
AL
1264 "-net dump[,vlan=n][,file=f][,len=n]\n"
1265 " dump traffic on vlan 'n' to file 'f' (max n bytes per packet)\n"
ca1a8a06 1266 "-net none use it alone to have zero network devices. If no -net option\n"
ad96090a 1267 " is provided, the default is '-net nic -net user'\n", QEMU_ARCH_ALL)
a1ea458f
MM
1268DEF("netdev", HAS_ARG, QEMU_OPTION_netdev,
1269 "-netdev ["
1270#ifdef CONFIG_SLIRP
1271 "user|"
1272#endif
1273 "tap|"
a7c36ee4 1274 "bridge|"
a1ea458f
MM
1275#ifdef CONFIG_VDE
1276 "vde|"
1277#endif
ad96090a 1278 "socket],id=str[,option][,option][,...]\n", QEMU_ARCH_ALL)
5824d651 1279STEXI
609c1dac 1280@item -net nic[,vlan=@var{n}][,macaddr=@var{mac}][,model=@var{type}] [,name=@var{name}][,addr=@var{addr}][,vectors=@var{v}]
6616b2ad 1281@findex -net
5824d651 1282Create a new Network Interface Card and connect it to VLAN @var{n} (@var{n}
0d6b0b1d 1283= 0 is the default). The NIC is an e1000 by default on the PC
5607c388
MA
1284target. Optionally, the MAC address can be changed to @var{mac}, the
1285device address set to @var{addr} (PCI cards only),
ffe6370c
MT
1286and a @var{name} can be assigned for use in monitor commands.
1287Optionally, for PCI cards, you can specify the number @var{v} of MSI-X vectors
1288that the card should have; this option currently only affects virtio cards; set
1289@var{v} = 0 to disable MSI-X. If no @option{-net} option is specified, a single
1290NIC is created. Qemu can emulate several different models of network card.
5824d651 1291Valid values for @var{type} are
ffe6370c 1292@code{virtio}, @code{i82551}, @code{i82557b}, @code{i82559er},
5824d651
BS
1293@code{ne2k_pci}, @code{ne2k_isa}, @code{pcnet}, @code{rtl8139},
1294@code{e1000}, @code{smc91c111}, @code{lance} and @code{mcf_fec}.
1295Not all devices are supported on all targets. Use -net nic,model=?
1296for a list of available devices for your target.
1297
ad196a9d 1298@item -net user[,@var{option}][,@var{option}][,...]
5824d651 1299Use the user mode network stack which requires no administrator
ad196a9d
JK
1300privilege to run. Valid options are:
1301
b3f046c2 1302@table @option
ad196a9d
JK
1303@item vlan=@var{n}
1304Connect user mode stack to VLAN @var{n} (@var{n} = 0 is the default).
1305
1306@item name=@var{name}
1307Assign symbolic name for use in monitor commands.
1308
c92ef6a2
JK
1309@item net=@var{addr}[/@var{mask}]
1310Set IP network address the guest will see. Optionally specify the netmask,
1311either in the form a.b.c.d or as number of valid top-most bits. Default is
b0b36e5d 131210.0.2.0/24.
c92ef6a2
JK
1313
1314@item host=@var{addr}
1315Specify the guest-visible address of the host. Default is the 2nd IP in the
1316guest network, i.e. x.x.x.2.
ad196a9d 1317
c54ed5bc 1318@item restrict=on|off
caef55ed 1319If this option is enabled, the guest will be isolated, i.e. it will not be
ad196a9d 1320able to contact the host and no guest IP packets will be routed over the host
caef55ed 1321to the outside. This option does not affect any explicitly set forwarding rules.
ad196a9d
JK
1322
1323@item hostname=@var{name}
1324Specifies the client hostname reported by the builtin DHCP server.
1325
c92ef6a2
JK
1326@item dhcpstart=@var{addr}
1327Specify the first of the 16 IPs the built-in DHCP server can assign. Default
b0b36e5d 1328is the 15th to 31st IP in the guest network, i.e. x.x.x.15 to x.x.x.31.
c92ef6a2
JK
1329
1330@item dns=@var{addr}
1331Specify the guest-visible address of the virtual nameserver. The address must
1332be different from the host address. Default is the 3rd IP in the guest network,
1333i.e. x.x.x.3.
1334
ad196a9d
JK
1335@item tftp=@var{dir}
1336When using the user mode network stack, activate a built-in TFTP
1337server. The files in @var{dir} will be exposed as the root of a TFTP server.
1338The TFTP client on the guest must be configured in binary mode (use the command
c92ef6a2 1339@code{bin} of the Unix TFTP client).
ad196a9d
JK
1340
1341@item bootfile=@var{file}
1342When using the user mode network stack, broadcast @var{file} as the BOOTP
1343filename. In conjunction with @option{tftp}, this can be used to network boot
1344a guest from a local directory.
1345
1346Example (using pxelinux):
1347@example
1348qemu -hda linux.img -boot n -net user,tftp=/path/to/tftp/files,bootfile=/pxelinux.0
1349@end example
1350
c92ef6a2 1351@item smb=@var{dir}[,smbserver=@var{addr}]
ad196a9d
JK
1352When using the user mode network stack, activate a built-in SMB
1353server so that Windows OSes can access to the host files in @file{@var{dir}}
c92ef6a2
JK
1354transparently. The IP address of the SMB server can be set to @var{addr}. By
1355default the 4th IP in the guest network is used, i.e. x.x.x.4.
ad196a9d
JK
1356
1357In the guest Windows OS, the line:
1358@example
135910.0.2.4 smbserver
1360@end example
1361must be added in the file @file{C:\WINDOWS\LMHOSTS} (for windows 9x/Me)
1362or @file{C:\WINNT\SYSTEM32\DRIVERS\ETC\LMHOSTS} (Windows NT/2000).
1363
1364Then @file{@var{dir}} can be accessed in @file{\\smbserver\qemu}.
1365
e2d8830e
B
1366Note that a SAMBA server must be installed on the host OS.
1367QEMU was tested successfully with smbd versions from Red Hat 9,
1368Fedora Core 3 and OpenSUSE 11.x.
ad196a9d 1369
3c6a0580 1370@item hostfwd=[tcp|udp]:[@var{hostaddr}]:@var{hostport}-[@var{guestaddr}]:@var{guestport}
c92ef6a2
JK
1371Redirect incoming TCP or UDP connections to the host port @var{hostport} to
1372the guest IP address @var{guestaddr} on guest port @var{guestport}. If
1373@var{guestaddr} is not specified, its value is x.x.x.15 (default first address
3c6a0580
JK
1374given by the built-in DHCP server). By specifying @var{hostaddr}, the rule can
1375be bound to a specific host interface. If no connection type is set, TCP is
c92ef6a2 1376used. This option can be given multiple times.
ad196a9d
JK
1377
1378For example, to redirect host X11 connection from screen 1 to guest
1379screen 0, use the following:
1380
1381@example
1382# on the host
3c6a0580 1383qemu -net user,hostfwd=tcp:127.0.0.1:6001-:6000 [...]
ad196a9d
JK
1384# this host xterm should open in the guest X11 server
1385xterm -display :1
1386@end example
1387
1388To redirect telnet connections from host port 5555 to telnet port on
1389the guest, use the following:
1390
1391@example
1392# on the host
aa375206 1393qemu -net user,hostfwd=tcp::5555-:23 [...]
ad196a9d
JK
1394telnet localhost 5555
1395@end example
1396
1397Then when you use on the host @code{telnet localhost 5555}, you
1398connect to the guest telnet server.
5824d651 1399
c92ef6a2 1400@item guestfwd=[tcp]:@var{server}:@var{port}-@var{dev}
3c6a0580
JK
1401Forward guest TCP connections to the IP address @var{server} on port @var{port}
1402to the character device @var{dev}. This option can be given multiple times.
ad196a9d
JK
1403
1404@end table
1405
1406Note: Legacy stand-alone options -tftp, -bootp, -smb and -redir are still
1407processed and applied to -net user. Mixing them with the new configuration
1408syntax gives undefined results. Their use for new applications is discouraged
1409as they will be removed from future versions.
5824d651 1410
a7c36ee4
CB
1411@item -net tap[,vlan=@var{n}][,name=@var{name}][,fd=@var{h}][,ifname=@var{name}][,script=@var{file}][,downscript=@var{dfile}][,helper=@var{helper}]
1412Connect the host TAP network interface @var{name} to VLAN @var{n}.
1413
1414Use the network script @var{file} to configure it and the network script
5824d651 1415@var{dfile} to deconfigure it. If @var{name} is not provided, the OS
a7c36ee4
CB
1416automatically provides one. The default network configure script is
1417@file{/etc/qemu-ifup} and the default network deconfigure script is
1418@file{/etc/qemu-ifdown}. Use @option{script=no} or @option{downscript=no}
1419to disable script execution.
1420
1421If running QEMU as an unprivileged user, use the network helper
1422@var{helper} to configure the TAP interface. The default network
1423helper executable is @file{/usr/local/libexec/qemu-bridge-helper}.
1424
1425@option{fd}=@var{h} can be used to specify the handle of an already
1426opened host TAP interface.
1427
1428Examples:
5824d651
BS
1429
1430@example
a7c36ee4 1431#launch a QEMU instance with the default network script
5824d651
BS
1432qemu linux.img -net nic -net tap
1433@end example
1434
5824d651 1435@example
a7c36ee4
CB
1436#launch a QEMU instance with two NICs, each one connected
1437#to a TAP device
5824d651
BS
1438qemu linux.img -net nic,vlan=0 -net tap,vlan=0,ifname=tap0 \
1439 -net nic,vlan=1 -net tap,vlan=1,ifname=tap1
1440@end example
1441
a7c36ee4
CB
1442@example
1443#launch a QEMU instance with the default network helper to
1444#connect a TAP device to bridge br0
1445qemu linux.img -net nic -net tap,"helper=/usr/local/libexec/qemu-bridge-helper"
1446@end example
1447
1448@item -net bridge[,vlan=@var{n}][,name=@var{name}][,br=@var{bridge}][,helper=@var{helper}]
1449Connect a host TAP network interface to a host bridge device.
1450
1451Use the network helper @var{helper} to configure the TAP interface and
1452attach it to the bridge. The default network helper executable is
1453@file{/usr/local/libexec/qemu-bridge-helper} and the default bridge
1454device is @file{br0}.
1455
1456Examples:
1457
1458@example
1459#launch a QEMU instance with the default network helper to
1460#connect a TAP device to bridge br0
1461qemu linux.img -net bridge -net nic,model=virtio
1462@end example
1463
1464@example
1465#launch a QEMU instance with the default network helper to
1466#connect a TAP device to bridge qemubr0
1467qemu linux.img -net bridge,br=qemubr0 -net nic,model=virtio
1468@end example
1469
609c1dac 1470@item -net socket[,vlan=@var{n}][,name=@var{name}][,fd=@var{h}] [,listen=[@var{host}]:@var{port}][,connect=@var{host}:@var{port}]
5824d651
BS
1471
1472Connect the VLAN @var{n} to a remote VLAN in another QEMU virtual
1473machine using a TCP socket connection. If @option{listen} is
1474specified, QEMU waits for incoming connections on @var{port}
1475(@var{host} is optional). @option{connect} is used to connect to
1476another QEMU instance using the @option{listen} option. @option{fd}=@var{h}
1477specifies an already opened TCP socket.
1478
1479Example:
1480@example
1481# launch a first QEMU instance
1482qemu linux.img -net nic,macaddr=52:54:00:12:34:56 \
1483 -net socket,listen=:1234
1484# connect the VLAN 0 of this instance to the VLAN 0
1485# of the first instance
1486qemu linux.img -net nic,macaddr=52:54:00:12:34:57 \
1487 -net socket,connect=127.0.0.1:1234
1488@end example
1489
3a75e74c 1490@item -net socket[,vlan=@var{n}][,name=@var{name}][,fd=@var{h}][,mcast=@var{maddr}:@var{port}[,localaddr=@var{addr}]]
5824d651
BS
1491
1492Create a VLAN @var{n} shared with another QEMU virtual
1493machines using a UDP multicast socket, effectively making a bus for
1494every QEMU with same multicast address @var{maddr} and @var{port}.
1495NOTES:
1496@enumerate
1497@item
1498Several QEMU can be running on different hosts and share same bus (assuming
1499correct multicast setup for these hosts).
1500@item
1501mcast support is compatible with User Mode Linux (argument @option{eth@var{N}=mcast}), see
1502@url{http://user-mode-linux.sf.net}.
1503@item
1504Use @option{fd=h} to specify an already opened UDP multicast socket.
1505@end enumerate
1506
1507Example:
1508@example
1509# launch one QEMU instance
1510qemu linux.img -net nic,macaddr=52:54:00:12:34:56 \
1511 -net socket,mcast=230.0.0.1:1234
1512# launch another QEMU instance on same "bus"
1513qemu linux.img -net nic,macaddr=52:54:00:12:34:57 \
1514 -net socket,mcast=230.0.0.1:1234
1515# launch yet another QEMU instance on same "bus"
1516qemu linux.img -net nic,macaddr=52:54:00:12:34:58 \
1517 -net socket,mcast=230.0.0.1:1234
1518@end example
1519
1520Example (User Mode Linux compat.):
1521@example
1522# launch QEMU instance (note mcast address selected
1523# is UML's default)
1524qemu linux.img -net nic,macaddr=52:54:00:12:34:56 \
1525 -net socket,mcast=239.192.168.1:1102
1526# launch UML
1527/path/to/linux ubd0=/path/to/root_fs eth0=mcast
1528@end example
1529
3a75e74c
MR
1530Example (send packets from host's 1.2.3.4):
1531@example
1532qemu linux.img -net nic,macaddr=52:54:00:12:34:56 \
1533 -net socket,mcast=239.192.168.1:1102,localaddr=1.2.3.4
1534@end example
1535
609c1dac 1536@item -net vde[,vlan=@var{n}][,name=@var{name}][,sock=@var{socketpath}] [,port=@var{n}][,group=@var{groupname}][,mode=@var{octalmode}]
5824d651
BS
1537Connect VLAN @var{n} to PORT @var{n} of a vde switch running on host and
1538listening for incoming connections on @var{socketpath}. Use GROUP @var{groupname}
1539and MODE @var{octalmode} to change default ownership and permissions for
c1ba4e0b 1540communication port. This option is only available if QEMU has been compiled
5824d651
BS
1541with vde support enabled.
1542
1543Example:
1544@example
1545# launch vde switch
1546vde_switch -F -sock /tmp/myswitch
1547# launch QEMU instance
1548qemu linux.img -net nic -net vde,sock=/tmp/myswitch
1549@end example
1550
bb9ea79e
AL
1551@item -net dump[,vlan=@var{n}][,file=@var{file}][,len=@var{len}]
1552Dump network traffic on VLAN @var{n} to file @var{file} (@file{qemu-vlan0.pcap} by default).
1553At most @var{len} bytes (64k by default) per packet are stored. The file format is
1554libpcap, so it can be analyzed with tools such as tcpdump or Wireshark.
1555
5824d651
BS
1556@item -net none
1557Indicate that no network devices should be configured. It is used to
1558override the default configuration (@option{-net nic -net user}) which
1559is activated if no @option{-net} options are provided.
5824d651
BS
1560
1561@end table
1562ETEXI
1563
7273a2db
MB
1564DEFHEADING()
1565
1566DEFHEADING(Character device options:)
1567
1568DEF("chardev", HAS_ARG, QEMU_OPTION_chardev,
97331287 1569 "-chardev null,id=id[,mux=on|off]\n"
7273a2db 1570 "-chardev socket,id=id[,host=host],port=host[,to=to][,ipv4][,ipv6][,nodelay]\n"
97331287
JK
1571 " [,server][,nowait][,telnet][,mux=on|off] (tcp)\n"
1572 "-chardev socket,id=id,path=path[,server][,nowait][,telnet],[mux=on|off] (unix)\n"
7273a2db 1573 "-chardev udp,id=id[,host=host],port=port[,localaddr=localaddr]\n"
97331287
JK
1574 " [,localport=localport][,ipv4][,ipv6][,mux=on|off]\n"
1575 "-chardev msmouse,id=id[,mux=on|off]\n"
7273a2db 1576 "-chardev vc,id=id[[,width=width][,height=height]][[,cols=cols][,rows=rows]]\n"
97331287
JK
1577 " [,mux=on|off]\n"
1578 "-chardev file,id=id,path=path[,mux=on|off]\n"
1579 "-chardev pipe,id=id,path=path[,mux=on|off]\n"
7273a2db 1580#ifdef _WIN32
97331287
JK
1581 "-chardev console,id=id[,mux=on|off]\n"
1582 "-chardev serial,id=id,path=path[,mux=on|off]\n"
7273a2db 1583#else
97331287 1584 "-chardev pty,id=id[,mux=on|off]\n"
b7fdb3ab 1585 "-chardev stdio,id=id[,mux=on|off][,signal=on|off]\n"
7273a2db
MB
1586#endif
1587#ifdef CONFIG_BRLAPI
97331287 1588 "-chardev braille,id=id[,mux=on|off]\n"
7273a2db
MB
1589#endif
1590#if defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \
1591 || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
97331287 1592 "-chardev tty,id=id,path=path[,mux=on|off]\n"
7273a2db
MB
1593#endif
1594#if defined(__linux__) || defined(__FreeBSD__) || defined(__DragonFly__)
97331287 1595 "-chardev parport,id=id,path=path[,mux=on|off]\n"
cbcc6336
AL
1596#endif
1597#if defined(CONFIG_SPICE)
1598 "-chardev spicevmc,id=id,name=name[,debug=debug]\n"
7273a2db 1599#endif
ad96090a 1600 , QEMU_ARCH_ALL
7273a2db
MB
1601)
1602
1603STEXI
1604
1605The general form of a character device option is:
1606@table @option
1607
97331287 1608@item -chardev @var{backend} ,id=@var{id} [,mux=on|off] [,@var{options}]
6616b2ad 1609@findex -chardev
7273a2db
MB
1610Backend is one of:
1611@option{null},
1612@option{socket},
1613@option{udp},
1614@option{msmouse},
1615@option{vc},
1616@option{file},
1617@option{pipe},
1618@option{console},
1619@option{serial},
1620@option{pty},
1621@option{stdio},
1622@option{braille},
1623@option{tty},
cbcc6336
AL
1624@option{parport},
1625@option{spicevmc}.
7273a2db
MB
1626The specific backend will determine the applicable options.
1627
1628All devices must have an id, which can be any string up to 127 characters long.
1629It is used to uniquely identify this device in other command line directives.
1630
97331287
JK
1631A character device may be used in multiplexing mode by multiple front-ends.
1632The key sequence of @key{Control-a} and @key{c} will rotate the input focus
1633between attached front-ends. Specify @option{mux=on} to enable this mode.
1634
7273a2db
MB
1635Options to each backend are described below.
1636
1637@item -chardev null ,id=@var{id}
1638A void device. This device will not emit any data, and will drop any data it
1639receives. The null backend does not take any options.
1640
1641@item -chardev socket ,id=@var{id} [@var{TCP options} or @var{unix options}] [,server] [,nowait] [,telnet]
1642
1643Create a two-way stream socket, which can be either a TCP or a unix socket. A
1644unix socket will be created if @option{path} is specified. Behaviour is
1645undefined if TCP options are specified for a unix socket.
1646
1647@option{server} specifies that the socket shall be a listening socket.
1648
1649@option{nowait} specifies that QEMU should not block waiting for a client to
1650connect to a listening socket.
1651
1652@option{telnet} specifies that traffic on the socket should interpret telnet
1653escape sequences.
1654
1655TCP and unix socket options are given below:
1656
1657@table @option
1658
8d533561 1659@item TCP options: port=@var{port} [,host=@var{host}] [,to=@var{to}] [,ipv4] [,ipv6] [,nodelay]
7273a2db
MB
1660
1661@option{host} for a listening socket specifies the local address to be bound.
1662For a connecting socket species the remote host to connect to. @option{host} is
1663optional for listening sockets. If not specified it defaults to @code{0.0.0.0}.
1664
1665@option{port} for a listening socket specifies the local port to be bound. For a
1666connecting socket specifies the port on the remote host to connect to.
1667@option{port} can be given as either a port number or a service name.
1668@option{port} is required.
1669
1670@option{to} is only relevant to listening sockets. If it is specified, and
1671@option{port} cannot be bound, QEMU will attempt to bind to subsequent ports up
1672to and including @option{to} until it succeeds. @option{to} must be specified
1673as a port number.
1674
1675@option{ipv4} and @option{ipv6} specify that either IPv4 or IPv6 must be used.
1676If neither is specified the socket may use either protocol.
1677
1678@option{nodelay} disables the Nagle algorithm.
1679
1680@item unix options: path=@var{path}
1681
1682@option{path} specifies the local path of the unix socket. @option{path} is
1683required.
1684
1685@end table
1686
1687@item -chardev udp ,id=@var{id} [,host=@var{host}] ,port=@var{port} [,localaddr=@var{localaddr}] [,localport=@var{localport}] [,ipv4] [,ipv6]
1688
1689Sends all traffic from the guest to a remote host over UDP.
1690
1691@option{host} specifies the remote host to connect to. If not specified it
1692defaults to @code{localhost}.
1693
1694@option{port} specifies the port on the remote host to connect to. @option{port}
1695is required.
1696
1697@option{localaddr} specifies the local address to bind to. If not specified it
1698defaults to @code{0.0.0.0}.
1699
1700@option{localport} specifies the local port to bind to. If not specified any
1701available local port will be used.
1702
1703@option{ipv4} and @option{ipv6} specify that either IPv4 or IPv6 must be used.
1704If neither is specified the device may use either protocol.
1705
1706@item -chardev msmouse ,id=@var{id}
1707
1708Forward QEMU's emulated msmouse events to the guest. @option{msmouse} does not
1709take any options.
1710
1711@item -chardev vc ,id=@var{id} [[,width=@var{width}] [,height=@var{height}]] [[,cols=@var{cols}] [,rows=@var{rows}]]
1712
1713Connect to a QEMU text console. @option{vc} may optionally be given a specific
1714size.
1715
1716@option{width} and @option{height} specify the width and height respectively of
1717the console, in pixels.
1718
1719@option{cols} and @option{rows} specify that the console be sized to fit a text
1720console with the given dimensions.
1721
1722@item -chardev file ,id=@var{id} ,path=@var{path}
1723
1724Log all traffic received from the guest to a file.
1725
1726@option{path} specifies the path of the file to be opened. This file will be
1727created if it does not already exist, and overwritten if it does. @option{path}
1728is required.
1729
1730@item -chardev pipe ,id=@var{id} ,path=@var{path}
1731
1732Create a two-way connection to the guest. The behaviour differs slightly between
1733Windows hosts and other hosts:
1734
1735On Windows, a single duplex pipe will be created at
1736@file{\\.pipe\@option{path}}.
1737
1738On other hosts, 2 pipes will be created called @file{@option{path}.in} and
1739@file{@option{path}.out}. Data written to @file{@option{path}.in} will be
1740received by the guest. Data written by the guest can be read from
1741@file{@option{path}.out}. QEMU will not create these fifos, and requires them to
1742be present.
1743
1744@option{path} forms part of the pipe path as described above. @option{path} is
1745required.
1746
1747@item -chardev console ,id=@var{id}
1748
1749Send traffic from the guest to QEMU's standard output. @option{console} does not
1750take any options.
1751
1752@option{console} is only available on Windows hosts.
1753
1754@item -chardev serial ,id=@var{id} ,path=@option{path}
1755
1756Send traffic from the guest to a serial device on the host.
1757
1758@option{serial} is
1759only available on Windows hosts.
1760
1761@option{path} specifies the name of the serial device to open.
1762
1763@item -chardev pty ,id=@var{id}
1764
1765Create a new pseudo-terminal on the host and connect to it. @option{pty} does
1766not take any options.
1767
1768@option{pty} is not available on Windows hosts.
1769
b7fdb3ab 1770@item -chardev stdio ,id=@var{id} [,signal=on|off]
7273a2db 1771Connect to standard input and standard output of the qemu process.
b7fdb3ab
AJ
1772
1773@option{signal} controls if signals are enabled on the terminal, that includes
1774exiting QEMU with the key sequence @key{Control-c}. This option is enabled by
1775default, use @option{signal=off} to disable it.
1776
1777@option{stdio} is not available on Windows hosts.
7273a2db
MB
1778
1779@item -chardev braille ,id=@var{id}
1780
1781Connect to a local BrlAPI server. @option{braille} does not take any options.
1782
1783@item -chardev tty ,id=@var{id} ,path=@var{path}
1784
1785Connect to a local tty device.
1786
1787@option{tty} is only available on Linux, Sun, FreeBSD, NetBSD, OpenBSD and
1788DragonFlyBSD hosts.
1789
1790@option{path} specifies the path to the tty. @option{path} is required.
1791
1792@item -chardev parport ,id=@var{id} ,path=@var{path}
1793
1794@option{parport} is only available on Linux, FreeBSD and DragonFlyBSD hosts.
1795
1796Connect to a local parallel port.
1797
1798@option{path} specifies the path to the parallel port device. @option{path} is
1799required.
1800
cbcc6336
AL
1801@item -chardev spicevmc ,id=@var{id} ,debug=@var{debug}, name=@var{name}
1802
3a846906
SH
1803@option{spicevmc} is only available when spice support is built in.
1804
cbcc6336
AL
1805@option{debug} debug level for spicevmc
1806
1807@option{name} name of spice channel to connect to
1808
1809Connect to a spice virtual machine channel, such as vdiport.
cbcc6336 1810
7273a2db
MB
1811@end table
1812ETEXI
1813
1814DEFHEADING()
1815
0f5314a2
RS
1816STEXI
1817DEFHEADING(Device URL Syntax:)
1818
1819In addition to using normal file images for the emulated storage devices,
1820QEMU can also use networked resources such as iSCSI devices. These are
1821specified using a special URL syntax.
1822
1823@table @option
1824@item iSCSI
1825iSCSI support allows QEMU to access iSCSI resources directly and use as
1826images for the guest storage. Both disk and cdrom images are supported.
1827
1828Syntax for specifying iSCSI LUNs is
1829``iscsi://<target-ip>[:<port>]/<target-iqn>/<lun>''
1830
1831Example (without authentication):
1832@example
1833qemu -cdrom iscsi://192.0.2.1/iqn.2001-04.com.example/2 \
1834--drive file=iscsi://192.0.2.1/iqn.2001-04.com.example/1
1835@end example
1836
1837Example (CHAP username/password via URL):
1838@example
1839qemu --drive file=iscsi://user%password@@192.0.2.1/iqn.2001-04.com.example/1
1840@end example
1841
1842Example (CHAP username/password via environment variables):
1843@example
1844LIBISCSI_CHAP_USERNAME="user" \
1845LIBISCSI_CHAP_PASSWORD="password" \
1846qemu --drive file=iscsi://192.0.2.1/iqn.2001-04.com.example/1
1847@end example
1848
1849iSCSI support is an optional feature of QEMU and only available when
1850compiled and linked against libiscsi.
1851
08ae330e
RS
1852@item NBD
1853QEMU supports NBD (Network Block Devices) both using TCP protocol as well
1854as Unix Domain Sockets.
1855
1856Syntax for specifying a NBD device using TCP
1857``nbd:<server-ip>:<port>[:exportname=<export>]''
1858
1859Syntax for specifying a NBD device using Unix Domain Sockets
1860``nbd:unix:<domain-socket>[:exportname=<export>]''
1861
1862
1863Example for TCP
1864@example
1865qemu --drive file=nbd:192.0.2.1:30000
1866@end example
1867
1868Example for Unix Domain Sockets
1869@example
1870qemu --drive file=nbd:unix:/tmp/nbd-socket
1871@end example
1872
d9990228
RS
1873@item Sheepdog
1874Sheepdog is a distributed storage system for QEMU.
1875QEMU supports using either local sheepdog devices or remote networked
1876devices.
1877
1878Syntax for specifying a sheepdog device
1879@table @list
1880``sheepdog:<vdiname>''
1881
1882``sheepdog:<vdiname>:<snapid>''
1883
1884``sheepdog:<vdiname>:<tag>''
1885
1886``sheepdog:<host>:<port>:<vdiname>''
1887
1888``sheepdog:<host>:<port>:<vdiname>:<snapid>''
1889
1890``sheepdog:<host>:<port>:<vdiname>:<tag>''
1891@end table
1892
1893Example
1894@example
1895qemu --drive file=sheepdog:192.0.2.1:30000:MyVirtualMachine
1896@end example
1897
1898See also @url{http://http://www.osrg.net/sheepdog/}.
1899
0f5314a2
RS
1900@end table
1901ETEXI
1902
7273a2db
MB
1903DEFHEADING(Bluetooth(R) options:)
1904
5824d651 1905DEF("bt", HAS_ARG, QEMU_OPTION_bt, \
5824d651
BS
1906 "-bt hci,null dumb bluetooth HCI - doesn't respond to commands\n" \
1907 "-bt hci,host[:id]\n" \
1908 " use host's HCI with the given name\n" \
1909 "-bt hci[,vlan=n]\n" \
1910 " emulate a standard HCI in virtual scatternet 'n'\n" \
1911 "-bt vhci[,vlan=n]\n" \
1912 " add host computer to virtual scatternet 'n' using VHCI\n" \
1913 "-bt device:dev[,vlan=n]\n" \
ad96090a
BS
1914 " emulate a bluetooth device 'dev' in scatternet 'n'\n",
1915 QEMU_ARCH_ALL)
5824d651 1916STEXI
5824d651
BS
1917@table @option
1918
1919@item -bt hci[...]
6616b2ad 1920@findex -bt
5824d651
BS
1921Defines the function of the corresponding Bluetooth HCI. -bt options
1922are matched with the HCIs present in the chosen machine type. For
1923example when emulating a machine with only one HCI built into it, only
1924the first @code{-bt hci[...]} option is valid and defines the HCI's
1925logic. The Transport Layer is decided by the machine type. Currently
1926the machines @code{n800} and @code{n810} have one HCI and all other
1927machines have none.
1928
1929@anchor{bt-hcis}
1930The following three types are recognized:
1931
b3f046c2 1932@table @option
5824d651
BS
1933@item -bt hci,null
1934(default) The corresponding Bluetooth HCI assumes no internal logic
1935and will not respond to any HCI commands or emit events.
1936
1937@item -bt hci,host[:@var{id}]
1938(@code{bluez} only) The corresponding HCI passes commands / events
1939to / from the physical HCI identified by the name @var{id} (default:
1940@code{hci0}) on the computer running QEMU. Only available on @code{bluez}
1941capable systems like Linux.
1942
1943@item -bt hci[,vlan=@var{n}]
1944Add a virtual, standard HCI that will participate in the Bluetooth
1945scatternet @var{n} (default @code{0}). Similarly to @option{-net}
1946VLANs, devices inside a bluetooth network @var{n} can only communicate
1947with other devices in the same network (scatternet).
1948@end table
1949
1950@item -bt vhci[,vlan=@var{n}]
1951(Linux-host only) Create a HCI in scatternet @var{n} (default 0) attached
1952to the host bluetooth stack instead of to the emulated target. This
1953allows the host and target machines to participate in a common scatternet
1954and communicate. Requires the Linux @code{vhci} driver installed. Can
1955be used as following:
1956
1957@example
1958qemu [...OPTIONS...] -bt hci,vlan=5 -bt vhci,vlan=5
1959@end example
1960
1961@item -bt device:@var{dev}[,vlan=@var{n}]
1962Emulate a bluetooth device @var{dev} and place it in network @var{n}
1963(default @code{0}). QEMU can only emulate one type of bluetooth devices
1964currently:
1965
b3f046c2 1966@table @option
5824d651
BS
1967@item keyboard
1968Virtual wireless keyboard implementing the HIDP bluetooth profile.
1969@end table
1970@end table
1971ETEXI
1972
1973DEFHEADING()
1974
7677f05d 1975DEFHEADING(Linux/Multiboot boot specific:)
5824d651 1976STEXI
7677f05d
AG
1977
1978When using these options, you can use a given Linux or Multiboot
1979kernel without installing it in the disk image. It can be useful
5824d651
BS
1980for easier testing of various kernels.
1981
1982@table @option
1983ETEXI
1984
1985DEF("kernel", HAS_ARG, QEMU_OPTION_kernel, \
ad96090a 1986 "-kernel bzImage use 'bzImage' as kernel image\n", QEMU_ARCH_ALL)
5824d651
BS
1987STEXI
1988@item -kernel @var{bzImage}
6616b2ad 1989@findex -kernel
7677f05d
AG
1990Use @var{bzImage} as kernel image. The kernel can be either a Linux kernel
1991or in multiboot format.
5824d651
BS
1992ETEXI
1993
1994DEF("append", HAS_ARG, QEMU_OPTION_append, \
ad96090a 1995 "-append cmdline use 'cmdline' as kernel command line\n", QEMU_ARCH_ALL)
5824d651
BS
1996STEXI
1997@item -append @var{cmdline}
6616b2ad 1998@findex -append
5824d651
BS
1999Use @var{cmdline} as kernel command line
2000ETEXI
2001
2002DEF("initrd", HAS_ARG, QEMU_OPTION_initrd, \
ad96090a 2003 "-initrd file use 'file' as initial ram disk\n", QEMU_ARCH_ALL)
5824d651
BS
2004STEXI
2005@item -initrd @var{file}
6616b2ad 2006@findex -initrd
5824d651 2007Use @var{file} as initial ram disk.
7677f05d
AG
2008
2009@item -initrd "@var{file1} arg=foo,@var{file2}"
2010
2011This syntax is only available with multiboot.
2012
2013Use @var{file1} and @var{file2} as modules and pass arg=foo as parameter to the
2014first module.
5824d651
BS
2015ETEXI
2016
2017STEXI
2018@end table
2019ETEXI
2020
2021DEFHEADING()
2022
2023DEFHEADING(Debug/Expert options:)
2024
2025STEXI
2026@table @option
2027ETEXI
2028
2029DEF("serial", HAS_ARG, QEMU_OPTION_serial, \
ad96090a
BS
2030 "-serial dev redirect the serial port to char device 'dev'\n",
2031 QEMU_ARCH_ALL)
5824d651
BS
2032STEXI
2033@item -serial @var{dev}
6616b2ad 2034@findex -serial
5824d651
BS
2035Redirect the virtual serial port to host character device
2036@var{dev}. The default device is @code{vc} in graphical mode and
2037@code{stdio} in non graphical mode.
2038
2039This option can be used several times to simulate up to 4 serial
2040ports.
2041
2042Use @code{-serial none} to disable all serial ports.
2043
2044Available character devices are:
b3f046c2 2045@table @option
4e257e5e 2046@item vc[:@var{W}x@var{H}]
5824d651
BS
2047Virtual console. Optionally, a width and height can be given in pixel with
2048@example
2049vc:800x600
2050@end example
2051It is also possible to specify width or height in characters:
2052@example
2053vc:80Cx24C
2054@end example
2055@item pty
2056[Linux only] Pseudo TTY (a new PTY is automatically allocated)
2057@item none
2058No device is allocated.
2059@item null
2060void device
2061@item /dev/XXX
2062[Linux only] Use host tty, e.g. @file{/dev/ttyS0}. The host serial port
2063parameters are set according to the emulated ones.
2064@item /dev/parport@var{N}
2065[Linux only, parallel port only] Use host parallel port
2066@var{N}. Currently SPP and EPP parallel port features can be used.
2067@item file:@var{filename}
2068Write output to @var{filename}. No character can be read.
2069@item stdio
2070[Unix only] standard input/output
2071@item pipe:@var{filename}
2072name pipe @var{filename}
2073@item COM@var{n}
2074[Windows only] Use host serial port @var{n}
2075@item udp:[@var{remote_host}]:@var{remote_port}[@@[@var{src_ip}]:@var{src_port}]
2076This implements UDP Net Console.
2077When @var{remote_host} or @var{src_ip} are not specified
2078they default to @code{0.0.0.0}.
2079When not using a specified @var{src_port} a random port is automatically chosen.
5824d651
BS
2080
2081If you just want a simple readonly console you can use @code{netcat} or
2082@code{nc}, by starting qemu with: @code{-serial udp::4555} and nc as:
2083@code{nc -u -l -p 4555}. Any time qemu writes something to that port it
2084will appear in the netconsole session.
2085
2086If you plan to send characters back via netconsole or you want to stop
2087and start qemu a lot of times, you should have qemu use the same
2088source port each time by using something like @code{-serial
2089udp::4555@@:4556} to qemu. Another approach is to use a patched
2090version of netcat which can listen to a TCP port and send and receive
2091characters via udp. If you have a patched version of netcat which
2092activates telnet remote echo and single char transfer, then you can
2093use the following options to step up a netcat redirector to allow
2094telnet on port 5555 to access the qemu port.
2095@table @code
2096@item Qemu Options:
2097-serial udp::4555@@:4556
2098@item netcat options:
2099-u -P 4555 -L 0.0.0.0:4556 -t -p 5555 -I -T
2100@item telnet options:
2101localhost 5555
2102@end table
2103
2104@item tcp:[@var{host}]:@var{port}[,@var{server}][,nowait][,nodelay]
2105The TCP Net Console has two modes of operation. It can send the serial
2106I/O to a location or wait for a connection from a location. By default
2107the TCP Net Console is sent to @var{host} at the @var{port}. If you use
2108the @var{server} option QEMU will wait for a client socket application
2109to connect to the port before continuing, unless the @code{nowait}
2110option was specified. The @code{nodelay} option disables the Nagle buffering
2111algorithm. If @var{host} is omitted, 0.0.0.0 is assumed. Only
2112one TCP connection at a time is accepted. You can use @code{telnet} to
2113connect to the corresponding character device.
2114@table @code
2115@item Example to send tcp console to 192.168.0.2 port 4444
2116-serial tcp:192.168.0.2:4444
2117@item Example to listen and wait on port 4444 for connection
2118-serial tcp::4444,server
2119@item Example to not wait and listen on ip 192.168.0.100 port 4444
2120-serial tcp:192.168.0.100:4444,server,nowait
2121@end table
2122
2123@item telnet:@var{host}:@var{port}[,server][,nowait][,nodelay]
2124The telnet protocol is used instead of raw tcp sockets. The options
2125work the same as if you had specified @code{-serial tcp}. The
2126difference is that the port acts like a telnet server or client using
2127telnet option negotiation. This will also allow you to send the
2128MAGIC_SYSRQ sequence if you use a telnet that supports sending the break
2129sequence. Typically in unix telnet you do it with Control-] and then
2130type "send break" followed by pressing the enter key.
2131
2132@item unix:@var{path}[,server][,nowait]
2133A unix domain socket is used instead of a tcp socket. The option works the
2134same as if you had specified @code{-serial tcp} except the unix domain socket
2135@var{path} is used for connections.
2136
2137@item mon:@var{dev_string}
2138This is a special option to allow the monitor to be multiplexed onto
2139another serial port. The monitor is accessed with key sequence of
2140@key{Control-a} and then pressing @key{c}. See monitor access
2141@ref{pcsys_keys} in the -nographic section for more keys.
2142@var{dev_string} should be any one of the serial devices specified
2143above. An example to multiplex the monitor onto a telnet server
2144listening on port 4444 would be:
2145@table @code
2146@item -serial mon:telnet::4444,server,nowait
2147@end table
2148
2149@item braille
2150Braille device. This will use BrlAPI to display the braille output on a real
2151or fake device.
2152
be8b28a9
KW
2153@item msmouse
2154Three button serial mouse. Configure the guest to use Microsoft protocol.
5824d651
BS
2155@end table
2156ETEXI
2157
2158DEF("parallel", HAS_ARG, QEMU_OPTION_parallel, \
ad96090a
BS
2159 "-parallel dev redirect the parallel port to char device 'dev'\n",
2160 QEMU_ARCH_ALL)
5824d651
BS
2161STEXI
2162@item -parallel @var{dev}
6616b2ad 2163@findex -parallel
5824d651
BS
2164Redirect the virtual parallel port to host device @var{dev} (same
2165devices as the serial port). On Linux hosts, @file{/dev/parportN} can
2166be used to use hardware devices connected on the corresponding host
2167parallel port.
2168
2169This option can be used several times to simulate up to 3 parallel
2170ports.
2171
2172Use @code{-parallel none} to disable all parallel ports.
2173ETEXI
2174
2175DEF("monitor", HAS_ARG, QEMU_OPTION_monitor, \
ad96090a
BS
2176 "-monitor dev redirect the monitor to char device 'dev'\n",
2177 QEMU_ARCH_ALL)
5824d651 2178STEXI
4e307fc8 2179@item -monitor @var{dev}
6616b2ad 2180@findex -monitor
5824d651
BS
2181Redirect the monitor to host device @var{dev} (same devices as the
2182serial port).
2183The default device is @code{vc} in graphical mode and @code{stdio} in
2184non graphical mode.
2185ETEXI
6ca5582d 2186DEF("qmp", HAS_ARG, QEMU_OPTION_qmp, \
ad96090a
BS
2187 "-qmp dev like -monitor but opens in 'control' mode\n",
2188 QEMU_ARCH_ALL)
95d5f08b
SW
2189STEXI
2190@item -qmp @var{dev}
6616b2ad 2191@findex -qmp
95d5f08b
SW
2192Like -monitor but opens in 'control' mode.
2193ETEXI
5824d651 2194
22a0e04b 2195DEF("mon", HAS_ARG, QEMU_OPTION_mon, \
ad96090a 2196 "-mon chardev=[name][,mode=readline|control][,default]\n", QEMU_ARCH_ALL)
22a0e04b
GH
2197STEXI
2198@item -mon chardev=[name][,mode=readline|control][,default]
6616b2ad 2199@findex -mon
22a0e04b
GH
2200Setup monitor on chardev @var{name}.
2201ETEXI
2202
c9f398e5 2203DEF("debugcon", HAS_ARG, QEMU_OPTION_debugcon, \
ad96090a
BS
2204 "-debugcon dev redirect the debug console to char device 'dev'\n",
2205 QEMU_ARCH_ALL)
c9f398e5
PA
2206STEXI
2207@item -debugcon @var{dev}
6616b2ad 2208@findex -debugcon
c9f398e5
PA
2209Redirect the debug console to host device @var{dev} (same devices as the
2210serial port). The debug console is an I/O port which is typically port
22110xe9; writing to that I/O port sends output to this device.
2212The default device is @code{vc} in graphical mode and @code{stdio} in
2213non graphical mode.
2214ETEXI
2215
5824d651 2216DEF("pidfile", HAS_ARG, QEMU_OPTION_pidfile, \
ad96090a 2217 "-pidfile file write PID to 'file'\n", QEMU_ARCH_ALL)
5824d651
BS
2218STEXI
2219@item -pidfile @var{file}
6616b2ad 2220@findex -pidfile
5824d651
BS
2221Store the QEMU process PID in @var{file}. It is useful if you launch QEMU
2222from a script.
2223ETEXI
2224
1b530a6d 2225DEF("singlestep", 0, QEMU_OPTION_singlestep, \
ad96090a 2226 "-singlestep always run in singlestep mode\n", QEMU_ARCH_ALL)
1b530a6d
AJ
2227STEXI
2228@item -singlestep
6616b2ad 2229@findex -singlestep
1b530a6d
AJ
2230Run the emulation in single step mode.
2231ETEXI
2232
5824d651 2233DEF("S", 0, QEMU_OPTION_S, \
ad96090a
BS
2234 "-S freeze CPU at startup (use 'c' to start execution)\n",
2235 QEMU_ARCH_ALL)
5824d651
BS
2236STEXI
2237@item -S
6616b2ad 2238@findex -S
5824d651
BS
2239Do not start CPU at startup (you must type 'c' in the monitor).
2240ETEXI
2241
59030a8c 2242DEF("gdb", HAS_ARG, QEMU_OPTION_gdb, \
ad96090a 2243 "-gdb dev wait for gdb connection on 'dev'\n", QEMU_ARCH_ALL)
59030a8c
AL
2244STEXI
2245@item -gdb @var{dev}
6616b2ad 2246@findex -gdb
59030a8c
AL
2247Wait for gdb connection on device @var{dev} (@pxref{gdb_usage}). Typical
2248connections will likely be TCP-based, but also UDP, pseudo TTY, or even
2249stdio are reasonable use case. The latter is allowing to start qemu from
2250within gdb and establish the connection via a pipe:
2251@example
2252(gdb) target remote | exec qemu -gdb stdio ...
2253@end example
5824d651
BS
2254ETEXI
2255
59030a8c 2256DEF("s", 0, QEMU_OPTION_s, \
ad96090a
BS
2257 "-s shorthand for -gdb tcp::" DEFAULT_GDBSTUB_PORT "\n",
2258 QEMU_ARCH_ALL)
5824d651 2259STEXI
59030a8c 2260@item -s
6616b2ad 2261@findex -s
59030a8c
AL
2262Shorthand for -gdb tcp::1234, i.e. open a gdbserver on TCP port 1234
2263(@pxref{gdb_usage}).
5824d651
BS
2264ETEXI
2265
2266DEF("d", HAS_ARG, QEMU_OPTION_d, \
ad96090a
BS
2267 "-d item1,... output log to /tmp/qemu.log (use -d ? for a list of log items)\n",
2268 QEMU_ARCH_ALL)
5824d651
BS
2269STEXI
2270@item -d
6616b2ad 2271@findex -d
5824d651
BS
2272Output log in /tmp/qemu.log
2273ETEXI
2274
c235d738
MF
2275DEF("D", HAS_ARG, QEMU_OPTION_D, \
2276 "-D logfile output log to logfile (instead of the default /tmp/qemu.log)\n",
2277 QEMU_ARCH_ALL)
2278STEXI
2279@item -D
2280@findex -D
2281Output log in logfile instead of /tmp/qemu.log
2282ETEXI
2283
5824d651
BS
2284DEF("hdachs", HAS_ARG, QEMU_OPTION_hdachs, \
2285 "-hdachs c,h,s[,t]\n" \
2286 " force hard disk 0 physical geometry and the optional BIOS\n" \
ad96090a
BS
2287 " translation (t=none or lba) (usually qemu can guess them)\n",
2288 QEMU_ARCH_ALL)
5824d651
BS
2289STEXI
2290@item -hdachs @var{c},@var{h},@var{s},[,@var{t}]
6616b2ad 2291@findex -hdachs
5824d651
BS
2292Force hard disk 0 physical geometry (1 <= @var{c} <= 16383, 1 <=
2293@var{h} <= 16, 1 <= @var{s} <= 63) and optionally force the BIOS
2294translation mode (@var{t}=none, lba or auto). Usually QEMU can guess
2295all those parameters. This option is useful for old MS-DOS disk
2296images.
2297ETEXI
2298
2299DEF("L", HAS_ARG, QEMU_OPTION_L, \
ad96090a
BS
2300 "-L path set the directory for the BIOS, VGA BIOS and keymaps\n",
2301 QEMU_ARCH_ALL)
5824d651
BS
2302STEXI
2303@item -L @var{path}
6616b2ad 2304@findex -L
5824d651
BS
2305Set the directory for the BIOS, VGA BIOS and keymaps.
2306ETEXI
2307
2308DEF("bios", HAS_ARG, QEMU_OPTION_bios, \
ad96090a 2309 "-bios file set the filename for the BIOS\n", QEMU_ARCH_ALL)
5824d651
BS
2310STEXI
2311@item -bios @var{file}
6616b2ad 2312@findex -bios
5824d651
BS
2313Set the filename for the BIOS.
2314ETEXI
2315
5824d651 2316DEF("enable-kvm", 0, QEMU_OPTION_enable_kvm, \
ad96090a 2317 "-enable-kvm enable KVM full virtualization support\n", QEMU_ARCH_ALL)
5824d651
BS
2318STEXI
2319@item -enable-kvm
6616b2ad 2320@findex -enable-kvm
5824d651
BS
2321Enable KVM full virtualization support. This option is only available
2322if KVM support is enabled when compiling.
2323ETEXI
2324
e37630ca 2325DEF("xen-domid", HAS_ARG, QEMU_OPTION_xen_domid,
ad96090a 2326 "-xen-domid id specify xen guest domain id\n", QEMU_ARCH_ALL)
e37630ca
AL
2327DEF("xen-create", 0, QEMU_OPTION_xen_create,
2328 "-xen-create create domain using xen hypercalls, bypassing xend\n"
ad96090a
BS
2329 " warning: should not be used when xend is in use\n",
2330 QEMU_ARCH_ALL)
e37630ca
AL
2331DEF("xen-attach", 0, QEMU_OPTION_xen_attach,
2332 "-xen-attach attach to existing xen domain\n"
ad96090a
BS
2333 " xend will use this when starting qemu\n",
2334 QEMU_ARCH_ALL)
95d5f08b
SW
2335STEXI
2336@item -xen-domid @var{id}
6616b2ad 2337@findex -xen-domid
95d5f08b
SW
2338Specify xen guest domain @var{id} (XEN only).
2339@item -xen-create
6616b2ad 2340@findex -xen-create
95d5f08b
SW
2341Create domain using xen hypercalls, bypassing xend.
2342Warning: should not be used when xend is in use (XEN only).
2343@item -xen-attach
6616b2ad 2344@findex -xen-attach
95d5f08b
SW
2345Attach to existing xen domain.
2346xend will use this when starting qemu (XEN only).
2347ETEXI
e37630ca 2348
5824d651 2349DEF("no-reboot", 0, QEMU_OPTION_no_reboot, \
ad96090a 2350 "-no-reboot exit instead of rebooting\n", QEMU_ARCH_ALL)
5824d651
BS
2351STEXI
2352@item -no-reboot
6616b2ad 2353@findex -no-reboot
5824d651
BS
2354Exit instead of rebooting.
2355ETEXI
2356
2357DEF("no-shutdown", 0, QEMU_OPTION_no_shutdown, \
ad96090a 2358 "-no-shutdown stop before shutdown\n", QEMU_ARCH_ALL)
5824d651
BS
2359STEXI
2360@item -no-shutdown
6616b2ad 2361@findex -no-shutdown
5824d651
BS
2362Don't exit QEMU on guest shutdown, but instead only stop the emulation.
2363This allows for instance switching to monitor to commit changes to the
2364disk image.
2365ETEXI
2366
2367DEF("loadvm", HAS_ARG, QEMU_OPTION_loadvm, \
2368 "-loadvm [tag|id]\n" \
ad96090a
BS
2369 " start right away with a saved state (loadvm in monitor)\n",
2370 QEMU_ARCH_ALL)
5824d651
BS
2371STEXI
2372@item -loadvm @var{file}
6616b2ad 2373@findex -loadvm
5824d651
BS
2374Start right away with a saved state (@code{loadvm} in monitor)
2375ETEXI
2376
2377#ifndef _WIN32
2378DEF("daemonize", 0, QEMU_OPTION_daemonize, \
ad96090a 2379 "-daemonize daemonize QEMU after initializing\n", QEMU_ARCH_ALL)
5824d651
BS
2380#endif
2381STEXI
2382@item -daemonize
6616b2ad 2383@findex -daemonize
5824d651
BS
2384Daemonize the QEMU process after initialization. QEMU will not detach from
2385standard IO until it is ready to receive connections on any of its devices.
2386This option is a useful way for external programs to launch QEMU without having
2387to cope with initialization race conditions.
2388ETEXI
2389
2390DEF("option-rom", HAS_ARG, QEMU_OPTION_option_rom, \
ad96090a
BS
2391 "-option-rom rom load a file, rom, into the option ROM space\n",
2392 QEMU_ARCH_ALL)
5824d651
BS
2393STEXI
2394@item -option-rom @var{file}
6616b2ad 2395@findex -option-rom
5824d651
BS
2396Load the contents of @var{file} as an option ROM.
2397This option is useful to load things like EtherBoot.
2398ETEXI
2399
2400DEF("clock", HAS_ARG, QEMU_OPTION_clock, \
2401 "-clock force the use of the given methods for timer alarm.\n" \
ad96090a
BS
2402 " To see what timers are available use -clock ?\n",
2403 QEMU_ARCH_ALL)
5824d651
BS
2404STEXI
2405@item -clock @var{method}
6616b2ad 2406@findex -clock
5824d651
BS
2407Force the use of the given methods for timer alarm. To see what timers
2408are available use -clock ?.
2409ETEXI
2410
1ed2fc1f 2411HXCOMM Options deprecated by -rtc
ad96090a
BS
2412DEF("localtime", 0, QEMU_OPTION_localtime, "", QEMU_ARCH_ALL)
2413DEF("startdate", HAS_ARG, QEMU_OPTION_startdate, "", QEMU_ARCH_ALL)
1ed2fc1f 2414
1ed2fc1f 2415DEF("rtc", HAS_ARG, QEMU_OPTION_rtc, \
6875204c 2416 "-rtc [base=utc|localtime|date][,clock=host|vm][,driftfix=none|slew]\n" \
ad96090a
BS
2417 " set the RTC base and clock, enable drift fix for clock ticks (x86 only)\n",
2418 QEMU_ARCH_ALL)
5824d651 2419
5824d651
BS
2420STEXI
2421
6875204c 2422@item -rtc [base=utc|localtime|@var{date}][,clock=host|vm][,driftfix=none|slew]
6616b2ad 2423@findex -rtc
1ed2fc1f
JK
2424Specify @option{base} as @code{utc} or @code{localtime} to let the RTC start at the current
2425UTC or local time, respectively. @code{localtime} is required for correct date in
2426MS-DOS or Windows. To start at a specific point in time, provide @var{date} in the
2427format @code{2006-06-17T16:01:21} or @code{2006-06-17}. The default base is UTC.
2428
6875204c
JK
2429By default the RTC is driven by the host system time. This allows to use the
2430RTC as accurate reference clock inside the guest, specifically if the host
2431time is smoothly following an accurate external reference clock, e.g. via NTP.
2432If you want to isolate the guest time from the host, even prevent it from
2433progressing during suspension, you can set @option{clock} to @code{vm} instead.
2434
1ed2fc1f
JK
2435Enable @option{driftfix} (i386 targets only) if you experience time drift problems,
2436specifically with Windows' ACPI HAL. This option will try to figure out how
2437many timer interrupts were not processed by the Windows guest and will
2438re-inject them.
5824d651
BS
2439ETEXI
2440
2441DEF("icount", HAS_ARG, QEMU_OPTION_icount, \
2442 "-icount [N|auto]\n" \
bc14ca24 2443 " enable virtual instruction counter with 2^N clock ticks per\n" \
ad96090a 2444 " instruction\n", QEMU_ARCH_ALL)
5824d651 2445STEXI
4e257e5e 2446@item -icount [@var{N}|auto]
6616b2ad 2447@findex -icount
5824d651 2448Enable virtual instruction counter. The virtual cpu will execute one
4e257e5e 2449instruction every 2^@var{N} ns of virtual time. If @code{auto} is specified
5824d651
BS
2450then the virtual cpu speed will be automatically adjusted to keep virtual
2451time within a few seconds of real time.
2452
2453Note that while this option can give deterministic behavior, it does not
2454provide cycle accurate emulation. Modern CPUs contain superscalar out of
2455order cores with complex cache hierarchies. The number of instructions
2456executed often has little or no correlation with actual performance.
2457ETEXI
2458
9dd986cc
RJ
2459DEF("watchdog", HAS_ARG, QEMU_OPTION_watchdog, \
2460 "-watchdog i6300esb|ib700\n" \
ad96090a
BS
2461 " enable virtual hardware watchdog [default=none]\n",
2462 QEMU_ARCH_ALL)
9dd986cc
RJ
2463STEXI
2464@item -watchdog @var{model}
6616b2ad 2465@findex -watchdog
9dd986cc
RJ
2466Create a virtual hardware watchdog device. Once enabled (by a guest
2467action), the watchdog must be periodically polled by an agent inside
2468the guest or else the guest will be restarted.
2469
2470The @var{model} is the model of hardware watchdog to emulate. Choices
2471for model are: @code{ib700} (iBASE 700) which is a very simple ISA
2472watchdog with a single timer, or @code{i6300esb} (Intel 6300ESB I/O
2473controller hub) which is a much more featureful PCI-based dual-timer
2474watchdog. Choose a model for which your guest has drivers.
2475
2476Use @code{-watchdog ?} to list available hardware models. Only one
2477watchdog can be enabled for a guest.
2478ETEXI
2479
2480DEF("watchdog-action", HAS_ARG, QEMU_OPTION_watchdog_action, \
2481 "-watchdog-action reset|shutdown|poweroff|pause|debug|none\n" \
ad96090a
BS
2482 " action when watchdog fires [default=reset]\n",
2483 QEMU_ARCH_ALL)
9dd986cc
RJ
2484STEXI
2485@item -watchdog-action @var{action}
2486
2487The @var{action} controls what QEMU will do when the watchdog timer
2488expires.
2489The default is
2490@code{reset} (forcefully reset the guest).
2491Other possible actions are:
2492@code{shutdown} (attempt to gracefully shutdown the guest),
2493@code{poweroff} (forcefully poweroff the guest),
2494@code{pause} (pause the guest),
2495@code{debug} (print a debug message and continue), or
2496@code{none} (do nothing).
2497
2498Note that the @code{shutdown} action requires that the guest responds
2499to ACPI signals, which it may not be able to do in the sort of
2500situations where the watchdog would have expired, and thus
2501@code{-watchdog-action shutdown} is not recommended for production use.
2502
2503Examples:
2504
2505@table @code
2506@item -watchdog i6300esb -watchdog-action pause
2507@item -watchdog ib700
2508@end table
2509ETEXI
2510
5824d651 2511DEF("echr", HAS_ARG, QEMU_OPTION_echr, \
ad96090a
BS
2512 "-echr chr set terminal escape character instead of ctrl-a\n",
2513 QEMU_ARCH_ALL)
5824d651
BS
2514STEXI
2515
4e257e5e 2516@item -echr @var{numeric_ascii_value}
6616b2ad 2517@findex -echr
5824d651
BS
2518Change the escape character used for switching to the monitor when using
2519monitor and serial sharing. The default is @code{0x01} when using the
2520@code{-nographic} option. @code{0x01} is equal to pressing
2521@code{Control-a}. You can select a different character from the ascii
2522control keys where 1 through 26 map to Control-a through Control-z. For
2523instance you could use the either of the following to change the escape
2524character to Control-t.
2525@table @code
2526@item -echr 0x14
2527@item -echr 20
2528@end table
2529ETEXI
2530
2531DEF("virtioconsole", HAS_ARG, QEMU_OPTION_virtiocon, \
2532 "-virtioconsole c\n" \
ad96090a 2533 " set virtio console\n", QEMU_ARCH_ALL)
5824d651
BS
2534STEXI
2535@item -virtioconsole @var{c}
6616b2ad 2536@findex -virtioconsole
5824d651 2537Set virtio console.
98b19252
AS
2538
2539This option is maintained for backward compatibility.
2540
2541Please use @code{-device virtconsole} for the new way of invocation.
5824d651
BS
2542ETEXI
2543
2544DEF("show-cursor", 0, QEMU_OPTION_show_cursor, \
ad96090a 2545 "-show-cursor show cursor\n", QEMU_ARCH_ALL)
5824d651 2546STEXI
95d5f08b 2547@item -show-cursor
6616b2ad 2548@findex -show-cursor
95d5f08b 2549Show cursor.
5824d651
BS
2550ETEXI
2551
2552DEF("tb-size", HAS_ARG, QEMU_OPTION_tb_size, \
ad96090a 2553 "-tb-size n set TB size\n", QEMU_ARCH_ALL)
5824d651 2554STEXI
95d5f08b 2555@item -tb-size @var{n}
6616b2ad 2556@findex -tb-size
95d5f08b 2557Set TB size.
5824d651
BS
2558ETEXI
2559
2560DEF("incoming", HAS_ARG, QEMU_OPTION_incoming, \
ad96090a
BS
2561 "-incoming p prepare for incoming migration, listen on port p\n",
2562 QEMU_ARCH_ALL)
5824d651 2563STEXI
95d5f08b 2564@item -incoming @var{port}
6616b2ad 2565@findex -incoming
95d5f08b 2566Prepare for incoming migration, listen on @var{port}.
5824d651
BS
2567ETEXI
2568
d8c208dd 2569DEF("nodefaults", 0, QEMU_OPTION_nodefaults, \
ad96090a 2570 "-nodefaults don't create default devices\n", QEMU_ARCH_ALL)
d8c208dd 2571STEXI
3dbf2c7f 2572@item -nodefaults
6616b2ad 2573@findex -nodefaults
3dbf2c7f 2574Don't create default devices.
d8c208dd
GH
2575ETEXI
2576
5824d651
BS
2577#ifndef _WIN32
2578DEF("chroot", HAS_ARG, QEMU_OPTION_chroot, \
ad96090a
BS
2579 "-chroot dir chroot to dir just before starting the VM\n",
2580 QEMU_ARCH_ALL)
5824d651
BS
2581#endif
2582STEXI
4e257e5e 2583@item -chroot @var{dir}
6616b2ad 2584@findex -chroot
5824d651
BS
2585Immediately before starting guest execution, chroot to the specified
2586directory. Especially useful in combination with -runas.
2587ETEXI
2588
2589#ifndef _WIN32
2590DEF("runas", HAS_ARG, QEMU_OPTION_runas, \
ad96090a
BS
2591 "-runas user change to user id user just before starting the VM\n",
2592 QEMU_ARCH_ALL)
5824d651
BS
2593#endif
2594STEXI
4e257e5e 2595@item -runas @var{user}
6616b2ad 2596@findex -runas
5824d651
BS
2597Immediately before starting guest execution, drop root privileges, switching
2598to the specified user.
2599ETEXI
2600
5824d651
BS
2601DEF("prom-env", HAS_ARG, QEMU_OPTION_prom_env,
2602 "-prom-env variable=value\n"
ad96090a
BS
2603 " set OpenBIOS nvram variables\n",
2604 QEMU_ARCH_PPC | QEMU_ARCH_SPARC)
95d5f08b
SW
2605STEXI
2606@item -prom-env @var{variable}=@var{value}
6616b2ad 2607@findex -prom-env
95d5f08b
SW
2608Set OpenBIOS nvram @var{variable} to given @var{value} (PPC, SPARC only).
2609ETEXI
5824d651 2610DEF("semihosting", 0, QEMU_OPTION_semihosting,
1ddeaa5d 2611 "-semihosting semihosting mode\n", QEMU_ARCH_ARM | QEMU_ARCH_M68K | QEMU_ARCH_XTENSA)
95d5f08b
SW
2612STEXI
2613@item -semihosting
6616b2ad 2614@findex -semihosting
1ddeaa5d 2615Semihosting mode (ARM, M68K, Xtensa only).
95d5f08b 2616ETEXI
5824d651 2617DEF("old-param", 0, QEMU_OPTION_old_param,
ad96090a 2618 "-old-param old param mode\n", QEMU_ARCH_ARM)
95d5f08b
SW
2619STEXI
2620@item -old-param
6616b2ad 2621@findex -old-param (ARM)
95d5f08b
SW
2622Old param mode (ARM only).
2623ETEXI
2624
715a664a 2625DEF("readconfig", HAS_ARG, QEMU_OPTION_readconfig,
ad96090a 2626 "-readconfig <file>\n", QEMU_ARCH_ALL)
3dbf2c7f
SW
2627STEXI
2628@item -readconfig @var{file}
6616b2ad 2629@findex -readconfig
3dbf2c7f
SW
2630Read device configuration from @var{file}.
2631ETEXI
715a664a
GH
2632DEF("writeconfig", HAS_ARG, QEMU_OPTION_writeconfig,
2633 "-writeconfig <file>\n"
ad96090a 2634 " read/write config file\n", QEMU_ARCH_ALL)
3dbf2c7f
SW
2635STEXI
2636@item -writeconfig @var{file}
6616b2ad 2637@findex -writeconfig
3dbf2c7f
SW
2638Write device configuration to @var{file}.
2639ETEXI
292444cb
AL
2640DEF("nodefconfig", 0, QEMU_OPTION_nodefconfig,
2641 "-nodefconfig\n"
ad96090a
BS
2642 " do not load default config files at startup\n",
2643 QEMU_ARCH_ALL)
292444cb
AL
2644STEXI
2645@item -nodefconfig
6616b2ad 2646@findex -nodefconfig
292444cb
AL
2647Normally QEMU loads a configuration file from @var{sysconfdir}/qemu.conf and
2648@var{sysconfdir}/target-@var{ARCH}.conf on startup. The @code{-nodefconfig}
2649option will prevent QEMU from loading these configuration files at startup.
2650ETEXI
ab6540d5 2651DEF("trace", HAS_ARG, QEMU_OPTION_trace,
23d15e86
L
2652 "-trace [events=<file>][,file=<file>]\n"
2653 " specify tracing options\n",
ab6540d5
PS
2654 QEMU_ARCH_ALL)
2655STEXI
23d15e86
L
2656HXCOMM This line is not accurate, as some sub-options are backend-specific but
2657HXCOMM HX does not support conditional compilation of text.
2658@item -trace [events=@var{file}][,file=@var{file}]
ab6540d5 2659@findex -trace
e4858974 2660
23d15e86
L
2661Specify tracing options.
2662
2663@table @option
2664@item events=@var{file}
2665Immediately enable events listed in @var{file}.
2666The file must contain one event name (as listed in the @var{trace-events} file)
2667per line.
c1ba4e0b
SW
2668This option is only available if QEMU has been compiled with
2669either @var{simple} or @var{stderr} tracing backend.
23d15e86
L
2670@item file=@var{file}
2671Log output traces to @var{file}.
2672
c1ba4e0b
SW
2673This option is only available if QEMU has been compiled with
2674the @var{simple} tracing backend.
23d15e86 2675@end table
ab6540d5 2676ETEXI
3dbf2c7f
SW
2677
2678HXCOMM This is the last statement. Insert new options before this line!
2679STEXI
2680@end table
2681ETEXI