blob: 78090febcf86035f87b8c65cf651c7f2fc4b142c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
|