]>
Commit | Line | Data |
---|---|---|
7a5ca864 FB |
1 | @example |
2 | @c man begin SYNOPSIS | |
7e8911bb SW |
3 | @command{qemu-nbd} [OPTION]... @var{filename} |
4 | ||
5 | @command{qemu-nbd} @option{-d} @var{dev} | |
7a5ca864 FB |
6 | @c man end |
7 | @end example | |
8 | ||
9 | @c man begin DESCRIPTION | |
10 | ||
7e8911bb | 11 | Export a QEMU disk image using the NBD protocol. |
7a5ca864 FB |
12 | |
13 | @c man end | |
14 | ||
15 | @c man begin OPTIONS | |
77c9aaef DB |
16 | @var{filename} is a disk image filename, or a set of block |
17 | driver options if @var{--image-opts} is specified. | |
7e8911bb SW |
18 | |
19 | @var{dev} is an NBD device. | |
20 | ||
4a6b819c | 21 | @table @option |
0ab3b337 DB |
22 | @item --object type,id=@var{id},...props... |
23 | Define a new instance of the @var{type} object class identified by @var{id}. | |
24 | See the @code{qemu(1)} manual page for full details of the properties | |
145614a1 | 25 | supported. The common object types that it makes sense to define are the |
0ab3b337 | 26 | @code{secret} object, which is used to supply passwords and/or encryption |
145614a1 DB |
27 | keys, and the @code{tls-creds} object, which is used to supply TLS |
28 | credentials for the qemu-nbd server. | |
4a6b819c | 29 | @item -p, --port=@var{port} |
50901218 | 30 | The TCP port to listen on (default @samp{10809}) |
4a6b819c | 31 | @item -o, --offset=@var{offset} |
50901218 | 32 | The offset into the image |
4a6b819c | 33 | @item -b, --bind=@var{iface} |
50901218 | 34 | The interface to bind to (default @samp{0.0.0.0}) |
4a6b819c | 35 | @item -k, --socket=@var{path} |
b9dbb617 | 36 | Use a unix socket with path @var{path} |
77c9aaef DB |
37 | @item --image-opts |
38 | Treat @var{filename} as a set of image options, instead of a plain | |
39 | filename. If this flag is specified, the @var{-f} flag should | |
40 | not be used, instead the '@code{format=}' option should be set. | |
7e8911bb | 41 | @item -f, --format=@var{fmt} |
50901218 | 42 | Force the use of the block driver for format @var{fmt} instead of |
7e8911bb | 43 | auto-detecting |
7a5ca864 | 44 | @item -r, --read-only |
50901218 | 45 | Export the disk as read-only |
4a6b819c | 46 | @item -P, --partition=@var{num} |
50901218 | 47 | Only expose partition @var{num} |
636192c4 EB |
48 | @item -B, --bitmap=@var{name} |
49 | If @var{filename} has a qcow2 persistent bitmap @var{name}, expose | |
50 | that bitmap via the ``qemu:dirty-bitmap:@var{name}'' context | |
51 | accessible through NBD_OPT_SET_META_CONTEXT. | |
2f726488 | 52 | @item -s, --snapshot |
50901218 | 53 | Use @var{filename} as an external snapshot, create a temporary |
b9dbb617 SW |
54 | file with backing_file=@var{filename}, redirect the write to |
55 | the temporary one | |
8c116b0e | 56 | @item -l, --load-snapshot=@var{snapshot_param} |
50901218 | 57 | Load an internal snapshot inside @var{filename} and export it |
b9dbb617 SW |
58 | as an read-only device, @var{snapshot_param} format is |
59 | 'snapshot.id=[ID],snapshot.name=[NAME]' or '[ID_OR_NAME]' | |
2f726488 | 60 | @item -n, --nocache |
0eb256a2 | 61 | @itemx --cache=@var{cache} |
50901218 | 62 | The cache mode to be used with the file. See the documentation of |
b9dbb617 | 63 | the emulator's @code{-drive cache=...} option for allowed values. |
0eb256a2 | 64 | @item --aio=@var{aio} |
50901218 | 65 | Set the asynchronous I/O mode between @samp{threads} (the default) |
b9dbb617 | 66 | and @samp{native} (Linux only). |
ded9d2d5 | 67 | @item --discard=@var{discard} |
50901218 | 68 | Control whether @dfn{discard} (also known as @dfn{trim} or @dfn{unmap}) |
7e8911bb SW |
69 | requests are ignored or passed to the filesystem. @var{discard} is one of |
70 | @samp{ignore} (or @samp{off}), @samp{unmap} (or @samp{on}). The default is | |
71 | @samp{ignore}. | |
72 | @item --detect-zeroes=@var{detect-zeroes} | |
50901218 | 73 | Control the automatic conversion of plain zero writes by the OS to |
7e8911bb SW |
74 | driver-specific optimized zero write commands. @var{detect-zeroes} is one of |
75 | @samp{off}, @samp{on} or @samp{unmap}. @samp{unmap} | |
76 | converts a zero write to an unmap operation and can only be used if | |
77 | @var{discard} is set to @samp{unmap}. The default is @samp{off}. | |
bba7be96 | 78 | @item -c, --connect=@var{dev} |
50901218 | 79 | Connect @var{filename} to NBD device @var{dev} |
cd831bd7 | 80 | @item -d, --disconnect |
50901218 | 81 | Disconnect the device @var{dev} |
4a6b819c | 82 | @item -e, --shared=@var{num} |
50901218 | 83 | Allow up to @var{num} clients to share the device (default @samp{1}) |
75818250 | 84 | @item -t, --persistent |
50901218 | 85 | Don't exit on the last connection |
b1a75b33 | 86 | @item -x, --export-name=@var{name} |
3d4b2f9c DB |
87 | Set the NBD volume export name. This switches the server to use |
88 | the new style NBD protocol negotiation | |
b1a75b33 EB |
89 | @item -D, --description=@var{description} |
90 | Set the NBD volume export description, as a human-readable | |
91 | string. Requires the use of @option{-x} | |
145614a1 DB |
92 | @item --tls-creds=ID |
93 | Enable mandatory TLS encryption for the server by setting the ID | |
94 | of the TLS credentials object previously created with the --object | |
95 | option. | |
ffb31e1d HR |
96 | @item --fork |
97 | Fork off the server process and exit the parent once the server is running. | |
7a5ca864 | 98 | @item -v, --verbose |
50901218 | 99 | Display extra debugging information |
7a5ca864 | 100 | @item -h, --help |
50901218 | 101 | Display this help and exit |
7a5ca864 | 102 | @item -V, --version |
50901218 | 103 | Display version information and exit |
39ca463e DL |
104 | @item -T, --trace [[enable=]@var{pattern}][,events=@var{file}][,file=@var{file}] |
105 | @findex --trace | |
106 | @include qemu-option-trace.texi | |
7a5ca864 FB |
107 | @end table |
108 | ||
109 | @c man end | |
110 | ||
111 | @ignore | |
112 | ||
113 | @setfilename qemu-nbd | |
114 | @settitle QEMU Disk Network Block Device Server | |
115 | ||
116 | @c man begin AUTHOR | |
117 | Copyright (C) 2006 Anthony Liguori <[email protected]>. | |
118 | This is free software; see the source for copying conditions. There is NO | |
119 | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |
120 | @c man end | |
121 | ||
122 | @c man begin SEEALSO | |
7e8911bb | 123 | qemu(1), qemu-img(1) |
7a5ca864 FB |
124 | @c man end |
125 | ||
126 | @end ignore |