Add a shorter syntax for plugin names.
[nbdkit/ericb.git] / plugins / gzip / nbdkit-gzip-plugin.pod
blob7959329bb3af3f47fdce65ae7d6f5676e739518e
1 =encoding utf8
3 =head1 NAME
5 nbdkit-gzip-plugin - nbdkit gzip plugin
7 =head1 SYNOPSIS
9  nbdkit gzip file=FILENAME.gz
11 =head1 DESCRIPTION
13 C<nbdkit-gzip-plugin> is a file serving plugin for L<nbdkit(1)>.
15 It serves the named C<FILENAME.gz> over NBD, uncompressing it on the
16 fly.  The plugin only supports read-only connections.
18 B<Note> that gzip files are not very good for random access in large
19 files because seeking to a position in the gzip file involves
20 uncompressing lots of data.  A more practical method to compress large
21 disk images is to use the L<xz(1)> format and L<nbdkit-xz-plugin(1)>.
23 =head1 SEE ALSO
25 L<nbdkit-xz-plugin(1)>,
26 L<nbdkit(1)>,
27 L<nbdkit-plugin(3)>.
29 =head1 AUTHORS
31 Richard W.M. Jones
33 =head1 COPYRIGHT
35 Copyright (C) 2013 Red Hat Inc.
37 =head1 LICENSE
39 Redistribution and use in source and binary forms, with or without
40 modification, are permitted provided that the following conditions are
41 met:
43 =over 4
45 =item *
47 Redistributions of source code must retain the above copyright
48 notice, this list of conditions and the following disclaimer.
50 =item *
52 Redistributions in binary form must reproduce the above copyright
53 notice, this list of conditions and the following disclaimer in the
54 documentation and/or other materials provided with the distribution.
56 =item *
58 Neither the name of Red Hat nor the names of its contributors may be
59 used to endorse or promote products derived from this software without
60 specific prior written permission.
62 =back
64 THIS SOFTWARE IS PROVIDED BY RED HAT AND CONTRIBUTORS ''AS IS'' AND
65 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
66 THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
67 PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RED HAT OR
68 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
69 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
70 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
71 USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
72 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
73 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
74 OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
75 SUCH DAMAGE.