qemu-nbd.texi 4.0 KB
Newer Older
B
bellard 已提交
1 2
@example
@c man begin SYNOPSIS
S
Sitsofe Wheeler 已提交
3 4 5
@command{qemu-nbd} [OPTION]... @var{filename}

@command{qemu-nbd} @option{-d} @var{dev}
B
bellard 已提交
6 7 8 9 10
@c man end
@end example

@c man begin DESCRIPTION

S
Sitsofe Wheeler 已提交
11
Export a QEMU disk image using the NBD protocol.
B
bellard 已提交
12 13 14 15

@c man end

@c man begin OPTIONS
16 17
@var{filename} is a disk image filename, or a set of block
driver options if @var{--image-opts} is specified.
S
Sitsofe Wheeler 已提交
18 19 20

@var{dev} is an NBD device.

21
@table @option
22 23 24
@item --object type,id=@var{id},...props...
Define a new instance of the @var{type} object class identified by @var{id}.
See the @code{qemu(1)} manual page for full details of the properties
25
supported. The common object types that it makes sense to define are the
26
@code{secret} object, which is used to supply passwords and/or encryption
27 28
keys, and the @code{tls-creds} object, which is used to supply TLS
credentials for the qemu-nbd server.
29
@item -p, --port=@var{port}
30
The TCP port to listen on (default @samp{10809})
31
@item -o, --offset=@var{offset}
32
The offset into the image
33
@item -b, --bind=@var{iface}
34
The interface to bind to (default @samp{0.0.0.0})
35
@item -k, --socket=@var{path}
36
Use a unix socket with path @var{path}
37 38 39 40
@item --image-opts
Treat @var{filename} as a set of image options, instead of a plain
filename. If this flag is specified, the @var{-f} flag should
not be used, instead the '@code{format=}' option should be set.
S
Sitsofe Wheeler 已提交
41
@item -f, --format=@var{fmt}
42
Force the use of the block driver for format @var{fmt} instead of
S
Sitsofe Wheeler 已提交
43
auto-detecting
B
bellard 已提交
44
@item -r, --read-only
45
Export the disk as read-only
46
@item -P, --partition=@var{num}
47
Only expose partition @var{num}
48
@item -s, --snapshot
49
Use @var{filename} as an external snapshot, create a temporary
50 51
file with backing_file=@var{filename}, redirect the write to
the temporary one
52
@item -l, --load-snapshot=@var{snapshot_param}
53
Load an internal snapshot inside @var{filename} and export it
54 55
as an read-only device, @var{snapshot_param} format is
'snapshot.id=[ID],snapshot.name=[NAME]' or '[ID_OR_NAME]'
56
@item -n, --nocache
57
@itemx --cache=@var{cache}
58
The cache mode to be used with the file.  See the documentation of
59
the emulator's @code{-drive cache=...} option for allowed values.
60
@item --aio=@var{aio}
61
Set the asynchronous I/O mode between @samp{threads} (the default)
62
and @samp{native} (Linux only).
P
Paolo Bonzini 已提交
63
@item --discard=@var{discard}
64
Control whether @dfn{discard} (also known as @dfn{trim} or @dfn{unmap})
S
Sitsofe Wheeler 已提交
65 66 67 68
requests are ignored or passed to the filesystem.  @var{discard} is one of
@samp{ignore} (or @samp{off}), @samp{unmap} (or @samp{on}).  The default is
@samp{ignore}.
@item --detect-zeroes=@var{detect-zeroes}
69
Control the automatic conversion of plain zero writes by the OS to
S
Sitsofe Wheeler 已提交
70 71 72 73
driver-specific optimized zero write commands.  @var{detect-zeroes} is one of
@samp{off}, @samp{on} or @samp{unmap}.  @samp{unmap}
converts a zero write to an unmap operation and can only be used if
@var{discard} is set to @samp{unmap}.  The default is @samp{off}.
74
@item -c, --connect=@var{dev}
75
Connect @var{filename} to NBD device @var{dev}
76
@item -d, --disconnect
77
Disconnect the device @var{dev}
78
@item -e, --shared=@var{num}
79
Allow up to @var{num} clients to share the device (default @samp{1})
80
@item -t, --persistent
81
Don't exit on the last connection
82 83 84
@item -x NAME, --export-name=NAME
Set the NBD volume export name. This switches the server to use
the new style NBD protocol negotiation
85 86 87 88
@item --tls-creds=ID
Enable mandatory TLS encryption for the server by setting the ID
of the TLS credentials object previously created with the --object
option.
B
bellard 已提交
89
@item -v, --verbose
90
Display extra debugging information
B
bellard 已提交
91
@item -h, --help
92
Display this help and exit
B
bellard 已提交
93
@item -V, --version
94
Display version information and exit
B
bellard 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
@end table

@c man end

@ignore

@setfilename qemu-nbd
@settitle QEMU Disk Network Block Device Server

@c man begin AUTHOR
Copyright (C) 2006 Anthony Liguori <anthony@codemonkey.ws>.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
@c man end

@c man begin SEEALSO
S
Sitsofe Wheeler 已提交
111
qemu(1), qemu-img(1)
B
bellard 已提交
112 113 114
@c man end

@end ignore