nbdkit-ext2-filter(1) | NBDKIT | nbdkit-ext2-filter(1) |
nbdkit-ext2-filter - read and write files inside ext2, ext3 or ext4 filesystems
nbdkit --filter=ext2 file fs.img ext2file=/disks/disk.raw nbdkit --filter=ext2 --filter=partition file fs.img \ partition=1 ext2file=exportname
"nbdkit-ext2-filter" is an nbdkit filter which can read and write files inside ext2, ext3 or ext4 filesystem images.
Suppose you have an ext2/3/4 filesystem image called fs.img which contains inside itself a file called disk.raw inside a directory on the filesystem called /disks, then you could serve that file over NBD using:
nbdkit --filter=ext2 file fs.img ext2file=/disks/disk.raw
Commonly disk images are partitioned. In that case, you must select just the partition of a disk image that contains an ext2 filesystem, by using nbdkit-partition-filter(1):
nbdkit --filter=ext2 --filter=partition file fs.img \ partition=1 ext2file=/disks/disk.raw
This filter can both read and write to the file inside the filesystem. Use the -r flag to force a readonly connection, but note this does not guarantee that no writes are made to the filesystem. In particular we may have to replay the ext3 journal in order to open a filesystem even read-only.
The filter does not support multiple parallel connections, because there is a risk of corrupting the filesystem (as if the filesystem was mounted by multiple machines). If a second connection is made to nbdkit, it will block until the first connection closes.
The filter is implemented using the ext2fs library which is provided in most Linux distros, and also available as part of the e2fsprogs project.
nbdkit-guestfs-plugin(1) is a more generic plugin which can read files from all kinds of different filesystem types, even if they are partitioned or use logical volumes. It uses libguestfs instead of e2fsprogs.
At present, when using this mode, the server does not advertise any particular exports; however, you may use nbdkit-exportname-filter(1) to perform that task. Similarly, the underlying plugin must support the default export name, "".
Use "nbdkit --dump-config" to find the location of $filterdir.
"nbdkit-ext2-filter" first appeared in nbdkit 1.18, replacing "nbdkit-ext2-plugin" which was added in nbdkit 1.4 and removed in nbdkit 1.22.
nbdkit(1), nbdkit-plugin(3), nbdkit-exportname-filter(1), nbdkit-partition-filter(1), nbdkit-guestfs-plugin(1), http://e2fsprogs.sourceforge.net/, fuse2fs(1).
Eric Blake
Richard W.M. Jones
Copyright (C) 2018-2020 Red Hat Inc.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY RED HAT AND CONTRIBUTORS ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RED HAT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2021-01-20 | nbdkit-1.24.1 |