Displaying 2 results from an estimated 2 matches for "55c32ed".
2016 Dec 12
0
Re: libguestfs error: bridge 'virbr0' not found
...t.com>
Date: Mon, 12 Dec 2016 19:28:35 +0000
Subject: [PATCH] v2v: Don't enable the network.
This was required by old virt-v2v, but probably not by new virt-v2v.
Thanks: Shahar Havivi.
---
v2v/v2v.ml | 1 -
1 file changed, 1 deletion(-)
diff --git a/v2v/v2v.ml b/v2v/v2v.ml
index d94a704..55c32ed 100644
--- a/v2v/v2v.ml
+++ b/v2v/v2v.ml
@@ -76,7 +76,6 @@ let rec main () =
let g = open_guestfs ~identifier:"v2v" () in
g#set_memsize (g#get_memsize () * 8 / 5);
- g#set_network true;
(match conversion_mode with
| Copying (overlays, _) -> populate_overlays g overlays...
2016 Dec 11
2
libguestfs error: bridge 'virbr0' not found
Hey,
I am getting this error after using virt-v2v-copy-to-local and trying to
run:
$ virt-v2v -i libvirtxml rhel7.xml -o local -os /var/tmp -of raw
I try to set:
export LIBGUESTFS_BACKEND_SETTINGS=virbr0=ovirtmgmt
with no success and the file /etc/qemu/bridge.conf contains:
allow virbr0
it only worked after creating the bridge, is there other way to import
without creating the bridge?
Thank