Displaying 12 results from an estimated 12 matches for "nguest".
Did you mean:
guest
2012 Jun 19
1
caps->nguests == 0?
hi,
I compiled the libvirt-0.9.10 and started the libvirtd with sudo.
Unfortunately, I got an Error, saying 'virDomainDefParseXML unknown OS
type hvm'. I debugged it and found in function
virCapabilitiesSupportsGuestOSType, the parameter caps->nguests is 0.
On the other hand, I tried start the libvirtd with common user, and
creating domain with virsh, i found the caps->ngusts is 2 and had one
value 'hvm', so it didn't complain the error above, instead, it
complained could not load PC BIOS bios.bin.
I'd say I searched a lo...
2019 Mar 26
7
[PATCH 0/3] v2v: improve RHV guest tools installation
This series slightly improves the way qemu-ga is installed from the
RHV Tools ISO, simplifying the feedback to the user.
Patch #3 sort of conflicts with patch #2 of a related series by
Tomáš Golembiovský:
https://www.redhat.com/archives/libguestfs/2019-February/msg00016.html
Pino Toscano (3):
v2v: linux: add helper functions for pkg arch and extension
v2v: try to pick the right arch for
2019 Jan 26
0
[PATCH 2/2] v2v: allow alternative directories for distributions
...src_path dst_path
+ copy_from_virtio_win g inspect src_paths dst_path
(fun _ _ -> true)
(fun () ->
- warning (f_"guest tools directory ‘%s’ is missing from the virtio-win directory or ISO.\n\nGuest tools are only provided in the RHV Guest Tools ISO, so this can happen if you are using the version of virtio-win which contains just the virtio drivers. In this case only virtio drivers can be installed in the guest, and installation of Guest Tools will be skipped.")
-...
2019 Feb 08
0
[PATCH v2 2/3] v2v: allow alternative directories for distributions
...src_path dst_path
+ copy_from_virtio_win g inspect src_paths dst_path
(fun _ _ -> true)
(fun () ->
- warning (f_"guest tools directory ‘%s’ is missing from the virtio-win directory or ISO.\n\nGuest tools are only provided in the RHV Guest Tools ISO, so this can happen if you are using the version of virtio-win which contains just the virtio drivers. In this case only virtio drivers can be installed in the guest, and installation of Guest Tools will be skipped.")
-...
2019 Jan 26
6
[PATCH 0/2] allow alternative guest tools directories for distributions
First patch just fixes installing guest tools from directory that was broken.
Second patch revamps how virt-v2v chooses from which directory install guest
tools on Linux. Details in commit message.
Tomáš Golembiovský (2):
v2v: fix path to source when copying files from guest tools directory
v2v: allow alternative directories for distributions
v2v/windows_virtio.ml | 67
2019 Jan 26
1
Re: [PATCH 2/2] v2v: allow alternative directories for distributions
...copy_from_virtio_win g inspect src_paths dst_path
> (fun _ _ -> true)
> (fun () ->
> - warning (f_"guest tools directory ‘%s’ is
> missing from the virtio-win directory or ISO.\n\nGuest tools are only
> provided in the RHV Guest Tools ISO, so this can happen if you are using
> the version of virtio-win which contains just the virtio drivers. In this
> case only virtio drivers can be installed in the guest, and installation of
> Guest Tools will be skipped.")
>...
2019 Mar 26
0
[PATCH 2/3] v2v: try to pick the right arch for qemu-ga pkgs
..._win g inspect src_path dst_path
- (fun _ _ -> true)
+ package_filter
(fun () ->
warning (f_"guest tools directory ‘%s’ is missing from the virtio-win directory or ISO.\n\nGuest tools are only provided in the RHV Guest Tools ISO, so this can happen if you are using the version of virtio-win which contains just the virtio drivers. In this case only virtio drivers can be installed in the guest, and installation of Guest Tools will be skipped.")...
2019 Mar 26
0
[PATCH 3/3] v2v: change the reporting of RHV Tools messages/warnings/error
...t =
let packages =
copy_from_virtio_win g inspect src_path dst_path
package_filter
- (fun () ->
- warning (f_"guest tools directory ‘%s’ is missing from the virtio-win directory or ISO.\n\nGuest tools are only provided in the RHV Guest Tools ISO, so this can happen if you are using the version of virtio-win which contains just the virtio drivers. In this case only virtio drivers can be installed in the guest, and installation of Guest Tools will be skipped.")
-...
2018 Dec 05
1
[PATCH v4] v2v: don't fail when virtio-win does not have qemu-ga
This is why I shouldn't program before lunchtime ...
v2 & v3 omitted gettext (‘f_()’) annotations around the warning and
error strings. Fixed in this version.
My cover letter for v2 still applies here.
Rich.
2018 Dec 05
1
[PATCH v2] v2v: don't fail when virtio-win does not have qemu-ga
This is my version of this patch which I think improves it in a number
of ways. Firstly instead of having the bare boolean parameter
‘ok_if_missing’ we pass in the function we want to call along the
directory missing path.
This change then allows us to print a more useful error or warning
message given the context of the call, and the new message is
actionable too, so the user knows what has to
2018 Dec 05
1
[PATCH v3] v2v: don't fail when virtio-win does not have qemu-ga
Sorry, there was a small mistake in v2 of the patch. The difference
between v2 & v3 is below. All my other comments in the cover letter
of v2 also apply here.
Rich.
--- a/v2v/windows_virtio.ml
+++ b/v2v/windows_virtio.ml
@@ -293,8 +293,7 @@ and copy_drivers g inspect driverdir =
[] <> copy_from_virtio_win g inspect "/" driverdir
virtio_iso_path_matches_guest_os
2019 Feb 08
6
[PATCH v2 0/3] allow alternative guest tools directories for distributions
First patch just fixes installing guest tools from directory that was broken.
Second patch revamps how virt-v2v chooses from which directory install guest
tools on Linux. Details in commit message.
v2:
- included comments from Pino and Rich
- added test
Tomáš Golembiovský (3):
v2v: fix path to source when copying files from guest tools directory
v2v: allow alternative directories for