search for: nbdcp

Displaying 2 results from an estimated 2 matches for "nbdcp".

2020 Jan 22
3
[PATCH libnbd] PROPOSAL Add nbdcp (NBD copying) tool.
...tions which make sense for NBD but which might not be applicable to qemu (eg. multi-conn, freely writing out of order from multiple threads). Alternative is of course to not write a new tool and instead try to fix all this stuff in qemu-img itself. Anyway let me know your thoughts. Rich. nbdcp(1) LIBNBD nbdcp(1) NAME nbdcp - copy between NBD servers and local files SYNOPSIS nbdcp [-a|--target-allocation allocated|sparse] [-m|--multi-conn <n>] [-M|--multi-conn-target <n>] [-p|--p...
2019 Oct 12
3
[PATCH libnbd] nbdfuse: New tool to present a network block device in a FUSE filesystem.
...d NBD shell (nbdsh). + * FUSE to build the nbdfuse program. + Optional, only needed to run the test suite: * nbdkit >= 1.12, the nbdkit basic plugins and the nbdkit basic diff --git a/TODO b/TODO index 71d678b..8b7dbe4 100644 --- a/TODO +++ b/TODO @@ -27,6 +27,13 @@ Should we ship a "nbdcp" copying tool? - Could upload, download or copy between servers. - Duplicates functionality already available in qemu-img convert. +nbdfuse: + - If you write beyond the end of the virtual file, it returns EIO. + - Implement trim/discard. + - Implement write_zeroes. + - Implement block_st...