1 NBD — Network Block Device — is a protocol for accessing Block Devices
2 (hard disks and disk-like things) over a Network.
4 nbdkit is a toolkit for creating NBD servers.
8 * Multithreaded NBD server written in C with good performance.
10 * Minimal dependencies for the basic server.
12 * Liberal license (BSD) allows nbdkit to be linked to proprietary
13 libraries or included in proprietary code.
15 * Well-documented, simple plugin API with a stable ABI guarantee.
16 Lets you export “unconventional” block devices easily.
18 * You can write plugins in C, Lua, Perl, Python, OCaml, Ruby, Rust,
21 * Filters can be stacked in front of plugins to transform the output.
23 For documentation, see the ‘docs/’ directory.
25 For plugins, examples and filters, see the ‘plugins/’ and ‘filters/’
31 This software is copyright (C) Red Hat Inc. and licensed under a BSD
32 license. See ‘LICENSE’ for details.
40 To build the basic server and some plugins nbdkit needs nothing except
41 Linux, FreeBSD or OpenBSD, and:
49 Although it is possible to build without it, it’s recommended to
50 enable TLS (authentication and encryption) support for which you will
58 To build the man pages, you will optionally need to install:
62 - Pod::Man and Pod::Simple (Perl library)
64 For SELinux socket labelling support:
76 For the curl (HTTP/FTP) plugin:
83 (this is a different library from libssh2 - that will not work)
87 - genisoimage or mkisofs
89 For the floppy plugin:
91 - iconv (on Linux this is built into glibc, on other systems
92 it may be a separate library)
94 For the libvirt plugin:
98 For the libguestfs plugin, and to run parts of the test suite:
102 - guestfish (from libguestfs)
110 For the linuxdisk plugin:
112 - mke2fs >= 1.42.10 (from e2fsprogs)
114 For the Perl, example4 and tar plugins:
118 - perl development libraries
120 - perl module ExtUtils::Embed
122 For the Python plugin:
125 (either version 2 or 3 may be used)
127 - python development libraries
129 For the OCaml plugin:
135 - Tcl development library and headers
139 - Lua development library and headers
143 - cargo (other dependencies will be downloaded at build time)
145 For bash tab completion:
147 - bash-completion >= 1.99
149 To test for memory leaks (‘make check-valgrind’):
151 - valgrind program and development headers
153 For non-essential enhancements to the test suite:
155 - ip, ss (from iproute package)
159 - losetup (from util-linux package)
161 - mke2fs (from e2fsprogs)
163 - qemu-img, qemu-io, qemu-nbd (usually shipped with qemu)
165 - sfdisk (from util-linux)
171 - stat (from coreutils)
176 To build from tarball: To build from git:
177 ---------------------- ------------------
179 ./configure ./configure
181 make check make check
183 To run nbdkit from the source directory, use the top level ./nbdkit
184 wrapper. It will run nbdkit and plugins from the locally compiled
187 $ ./nbdkit example1 -f -v
188 ./server/nbdkit ./plugins/example1/.libs/nbdkit-example1-plugin.so -f -v
191 Optionally run this command as root to install everything:
198 By default nbdkit uses the Python version of the Python interpreter
199 called “python” on the current $PATH. To use another version of
200 Python you may need to set the PYTHON variable when configuring. For
203 ./configure PYTHON=/usr/bin/python3
208 You will need to install libguestfs to run most of the test suite:
212 The test suite is fairly comprehensive. It runs the newly built
213 nbdkit + plugins as a captive process, and tests them using
214 libguestfs. If there is a failure, look at the corresponding
215 ‘tests/*.log’ file for debug information.
217 A few tests require root privileges, and are skipped by default. To
218 run them you must do:
222 If you have the proprietary VDDK library, you can test
223 nbdkit-vddk-plugin against the library like this:
225 make check-vddk vddkdir=vmware-vix-disklib-distrib
230 Tarballs are available from:
231 http://libguestfs.org/download/nbdkit
236 Install the valgrind program and development headers.
240 ./configure --enable-gcc-warnings --enable-valgrind
247 For development ideas, see the TODO file.
249 The upstream git repository is:
250 https://github.com/libguestfs/nbdkit
252 Please send patches to the libguestfs mailing list:
253 https://www.redhat.com/mailman/listinfo/libguestfs
255 For further information, see:
256 http://libguestfs.org/
257 https://github.com/NetworkBlockDevice/nbd/blob/master/doc/proto.md