|
NAMEnbdkit-loop - use nbdkit with the Linux kernel client to create loop devices and loop mountsDESCRIPTIONnbdkit (server) can be used with the Linux kernel nbd (client) in a loop mode allowing any of the plugins supported by nbdkit to be turned into Linux block devices.In addition to nbdkit(1) itself, the main commands you will use are:
The nbd-client(8) and modprobe(8) commands must be run as root. Warning: Do not loop mount untrusted filesystemsUntrusted filesystems and untrusted disk images should not be loop mounted because they could contain exploits that attack your host kernel. Use the tools from libguestfs(3) instead since it safely isolates untrusted filesystems from the host.Loop mount a filesystem from a compressed fileIf you have a filesystem or disk image in xz-compressed format then you can use nbdkit-xz-filter(1) and nbdkit-file-plugin(1) to loop mount it as follows:nbdkit --filter=xz file disk.xz nbd-client -b 512 localhost /dev/nbd0 mount /dev/nbd0p1 /mnt Loop mount a filesystem from a web serverYou can use nbdkit-curl-plugin(1) to loop mount a filesystem from a disk image on a web server:nbdkit [--filter=xz] curl https://example.com/disk.img nbd-client -b 512 localhost /dev/nbd0 mount /dev/nbd0p1 /mnt Use --filter=xz if the remote image is XZ-compressed. Create a giant btrfs filesystemnbdkit is useful for testing the limits of Linux filesystems. Using nbdkit-memory-plugin(1) you can create virtual disks stored in RAM with a virtual size up to 2⁶³-1 bytes, and then create filesystems on these:nbdkit memory $(( 2**63 - 1 )) nbd-client -b 512 localhost /dev/nbd0 Partition the device using GPT, creating a single partition with all default settings: gdisk /dev/nbd0 Make a btrfs filesystem on the disk and mount it: mkfs.btrfs -K /dev/nbd0p1 mount /dev/nbd0p1 /mnt Inject errors into Linux devicesUsing nbdkit-error-filter(1) you can see how Linux devices react to errors:nbdkit --filter=error \ memory 64M \ error-rate=100% error-file=/tmp/inject nbd-client -b 512 localhost /dev/nbd0 mkfs -t ext4 /dev/nbd0 mount /dev/nbd0 /mnt Inject errors by touching /tmp/inject, and stop injecting errors by removing this file. Write Linux block devices in shell scriptUsing nbdkit-sh-plugin(3) you can write custom Linux block devices in shell script for testing. For example the following shell script creates a disk which contains a bad sector:#!/bin/bash - case "$1" in thread_model) echo parallel ;; get_size) echo 64M ;; pread) if [ $4 -le 100000 ] && [ $(( $4+$3 )) -gt 100000 ]; then echo EIO Bad block >&2 exit 1 else dd if=/dev/zero count=$3 iflag=count_bytes fi ;; *) exit 2 ;; esac Create a loop from this shell script using: nbdkit sh ./bad-sector.sh nbd-client -b 512 localhost /dev/nbd0 You can then try running tests such as: badblocks /dev/nbd0 SEE ALSOnbdkit(1), nbdkit-plugin(3), loop(4), losetup(8), mount(8), nbdfuse(1), nbd-client(8), modprobe(8), libguestfs(3), http://libguestfs.org.AUTHORSRichard W.M. JonesCOPYRIGHTCopyright (C) 2013-2020 Red Hat Inc.LICENSERedistribution 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.
Visit the GSP FreeBSD Man Page Interface. |