summary refs log tree commit diff stats
path: root/results/scraper/launchpad-without-comments/1810343
diff options
context:
space:
mode:
Diffstat (limited to 'results/scraper/launchpad-without-comments/1810343')
-rw-r--r--results/scraper/launchpad-without-comments/181034312
1 files changed, 12 insertions, 0 deletions
diff --git a/results/scraper/launchpad-without-comments/1810343 b/results/scraper/launchpad-without-comments/1810343
new file mode 100644
index 000000000..f653477ef
--- /dev/null
+++ b/results/scraper/launchpad-without-comments/1810343
@@ -0,0 +1,12 @@
+qemu-nbd -l and -s options don't work together
+
+When using qemu-nbd with -l to load a snapshot along with -s to create new active layer the tool fails to find the snapshot specified on the command line:
+
+For example the following does not work:
+  sudo qemu-nbd -s --load-snapshot=files  --connect /dev/nbd0 rootfs.qcow2                                   
+  Failed to load snapshot: Can't find snapshot
+
+However, the following option works
+  sudo qemu-nbd -s --connect /dev/nbd0 rootfs.qcow2
+and so does
+  sudo qemu-nbd --load-snapshot=files  --connect /dev/nbd0 rootfs.qcow2
\ No newline at end of file