search for: mbooth

Displaying 20 results from an estimated 313 matches for "mbooth".

Did you mean: booth
2009 Nov 13
1
guestmount symlink issues
I'm trying to use guestmount to install some kernel modules in a guest: [mbooth at mbooth linux-2.6 (amit)]$ make modules_install INSTALL_MOD_PATH=~/etch ln: creating symbolic link `/home/mbooth/etch/lib/modules/2.6.32-rc6/source': No such file or directory make: *** [_modinst_] Error 1 I think something's screwy with symlinks. In the following, /tmp/source is a sy...
2010 Apr 07
1
[PATCH] v2v: Fix error on exit unmounting transfer ISO
If the transfer iso was mounted during conversion, virt-v2v would always give the following error on shutdown: (in cleanup) umount: /tmp/transferb7icam: umount: /sysroot/tmp/transferb7icam: not found at /home/mbooth/src/virt-v2v/blib/lib/Sys/VirtV2V/GuestOS/RedHat.pm line 1171. This was because the GuestOS::RedHat cleanup was being called implicitly on exit, which is after umount_all has been called explicitly on the libguestfs handle. This change garbage collects the guestos explicitly before the libguestfs...
2010 Apr 06
1
[PATCH] RHEV: Use dd and direct io to write to NFS
...close($data) - or die(user_message(__x("Error closing {path}: {error}", - path => "$path", - error => $!))); + # Write the remainder of the data using dd in 2MB chunks + # XXX - mbooth at redhat.com 06/04/2010 (Fedora 12 writing to RHEL 5 NFS) + # Use direct IO as writing a large amount of data to NFS regularly + # crashes my machine. Using direct io crashes less. + exec('dd', 'obs='.1024*1024*2, 'oflag=direct', 'of='.$path) +...
2012 Apr 17
2
[libvirt] [test-API 2/3] Add the better copyright statements in scripts
...d again?! We are currently using: Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA and went through a big process of fixing every file to use this address a little while back. commit 04ea1375c55aa67df4e7fc61dbb534111767f3b6 Author: Matthew Booth <mbooth at redhat.com> Date: Tue Nov 8 14:27:49 2011 +0000 Update FSF address. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones virt-top is 'top' for virtual machines. Tiny program with many powerful monitoring features, net stats, disk stats,...
2012 Jan 03
1
[PATCH] AUTHORS: add the email address for each authors
....org> +Geert Warrink <geert.warrink at onsnet.nu> +Guido G?nther <agx at sigxcpu.org> +Hilko Bengen <bengen at hilluzination.de> +Jaswinder Singh <jsingh at redhat.com> +Jim Meyering <meyering at redhat.com> +Karel Kl?? <kklic at redhat.com> +Matthew Booth <mbooth at redhat.com> +Maxim Koltsov <kolmax94 at gmail.com> +Michael Scherer <misc at zarb.org> +Nikita A Menkovich <menkovich at gmail.com> +Piotr Dr?g <piotrdrag at gmail.com> +Rajesh Ranjan <rranjan at redhat.com> +Richard W.M. Jones <rjones at redhat.com> +Sande...
2009 Aug 10
2
daemon/ warnings
Here are a few warning-removal changes for daemon/: >From eea38a1937ccd396603ed899d829d2982755ea4a Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering at redhat.com> Date: Thu, 6 Aug 2009 15:25:03 +0200 Subject: [PATCH 1/4] define ATTRIBUTE_UNUSED * daemon/daemon.h (__attribute__, ATTRIBUTE_UNUSED): Define. --- daemon/daemon.h | 10 ++++++++++ 1 files changed, 10 insertions(+), 0
2012 Jan 20
0
CamelName patch
...n pushed upstream: Well spotted! I was just about to point out that you did review it, when I noticed I'd mixed this one up with a similar one. You reviewed the other one. I have pushed this one accidentally. > commit 83c20f02dc0e97b098e9de837839a3f4a4416129 > Author: Matthew Booth<mbooth at redhat.com> > Date: Fri Jan 13 10:00:30 2012 +0000 > > generator: Add CamelName flag > > We can make a good guess at camel case names for most APIs. For example, > add_drive_opts can be automatically transformed to AddDriveOpts. However, ot > apis do...
2013 Aug 19
0
Re: missing chdir before chroot in guestfsd
...ot (".") == -1) { > perror ("chroot"); > _exit (EXIT_FAILURE); > } If you look at the upstream code, this has been fixed, or at least, the code is quite different. See: commit 2aa731e7c441581f0d72bcd06e9431b92931466a Author: Matthew Booth <mbooth@redhat.com> Date: Thu Dec 13 15:22:39 2012 +0000 daemon: Remove redundant fork in commandrvf Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones virt-p2v converts physical machines to virtual machines. Boot with a live CD or over the network (PXE) an...
2009 Dec 19
0
some thoughts about virt-v2v (including matt's reply)
...ine type of pc. > virt-v2v: demo1 configured with virtio drivers > > The user won't known whether "virt-v2v: The connected hypervisor does > not support a machine type of pc." is a warning or error. :) Yup, that could be improved. > > Osier Yang wrote: >> hi, mbooth. >> >> just some thoughts about virt-v2v, hope it's not invalid. :) >> >> 1. when we convert a guest on xen. we should do as following: >> 1> dump the guest xml >> 2> copy the guest xml and image to the the machine on which virt-v2v >> will run. &...
2013 May 07
1
Virt-v2v virtio device limit?
On Tue, May 07, 2013 at 05:26:14PM +0000, Davis, Richard wrote: > Apologies for the direct questioning, but is there a limit to the > amount of disks (virtio devices) assigned to VM that virt-v2v can > handle ? (I'm moving RHEL VM's from RH KVM hypervisors to RHEV > using virt-v2v-0.8.9-2.el6.x86_64) The published version of virt-v2v can only handle either 2 or 3 guest hard
2013 Aug 18
3
missing chdir before chroot in guestfsd
daemon.c does just a chroot, without chdir. The result is that pwd does not work correctly (it causes fs/dcache.c:prepend_unreachable() to add the unreachable string). A workaround is to add "cd /" before each sh command. ><fs> mount /dev/sda2 / ><fs> sh "cd / ; chroot / ; /bin/pwd" / ><fs> sh "/bin/pwd" (unreachable)/ ><fs> sh
2012 Jun 22
1
libguestfs and RHEV
On Fri, Jun 22, 2012 at 12:57:40PM +0000, Davis, Richard wrote: > I see that the libguestfs packages are included in the RHEV > Hypervisor product. > > Are there any plans to further integrate the libguestfs toolset into > the RHEV product ? In particular, the ability to mount and change > raw volume content for a VM via guestfish ? Yes there are plans to do this, but no public
2009 Nov 30
4
Attempts to install a Windows driver from WinPE
One of the things we would really like to be able to do for V2V is to install a new driver in a Windows guest. There are a couple of reasons for this: * The guest may not be bootable without the driver installed, for example because the underlying virtual hardware has changed from vmscsi to virtio. * If the guest can boot, the alternative is to modify the guest to run a script on next boot.
2011 Nov 11
3
[PATCH v2] Add mdadm-create, list-md-devices APIs.
This adds the mdadm-create API for creating RAID devices, and includes various fixes for the other two patches. Rich.
2011 Nov 23
3
P2Vs seem to require a very robust Ethernet
Now that we can gather diagnostic info, I think I know why our P2Vs kept failing last week. Another one just died right in front of my eyes. I think either the Ethernet or NFS server at this site occasionally "blips" offline when it gets busy and that messes up P2V migrations. The RHEV export domain is an NFS share offered by an old Storagetek NAS, connected over a 10/100 Ethernet.
2013 May 10
4
remotely mounting client disks in p2v server
Just spent a little time poking around w/ p2v and am attaching the following pseudo-code for consideration. Note the patches aren't commit ready yet, just looking for thoughts - The first is a fix to get client image building process working on F17. It seems the version of ksflatten there didn't expand the nested %includes which was causing errors (also --interpreter image-minimizer
2010 Mar 31
3
[PATCH] Remove v2v-snapshot
...for use when importing a Xen domain from -a origin machine for conversion with L<virt-v2v(1)>. virt-v2v should be given -I<snapshot-guest.xml> as the domain XML. - -=back - -=head1 SEE ALSO - -L<virt-v2v(1)>, -L<http://libguestfs.org/>. - -=head1 AUTHOR - -Matthew Booth <mbooth at redhat.com> - -=head1 COPYRIGHT - -Copyright (C) 2009 Red Hat Inc. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or -(at your option)...
2010 Feb 12
11
[PATCH 1/9] Convert config file to XML, and translate networks/bridge for all connections
Previously, only the LibVirtXML connection translated network and bridge names in imported metadata. This change moves this functionality in Converter, making it available to LibVirt connections as well. At the same time, the format of the config file is switched to XML. The primary driver for this is that the allowable syntax of a foreign network/bridge name is not known. Rather than create a
2010 Sep 21
1
[PREVIEW ONLY] Refactor data transfer code
...V::NFSHelper->new(sub { - print tempdir("v2v.XXXXXXXX", DIR => $root); - }); - my $fromchild = $nfs->{fromchild}; - ($tmpdir) = <$fromchild>; - $nfs->check_exit(); - } + # Write data using dd in 2MB chunks + # XXX - mbooth at redhat.com 06/04/2010 (Fedora 12 writing to RHEL 5 NFS) + # Use direct IO as writing a large amount of data to NFS regularly + # crashes my machine. Using direct io doesn't. + exec('dd', 'obs=2M', 'oflag=direct', 'of='.$path) +...
2010 Dec 07
0
builder-ubuntu febootstrap success af9f9305a0a48829392a57d24aee30978b449d1d
...otstrap-supermin-helper(8)> in paragraph 55. /usr/bin/pod2html: febootstrap.pod: cannot resolve L<febootstrap-supermin-helper(8)> in paragraph 82. /usr/bin/pod2html: febootstrap.pod: cannot resolve L<guestfs(3)> in paragraph 82. /usr/bin/pod2html: febootstrap.pod: cannot resolve L<mbooth at redhat.com> in paragraph 88. make[2]: Leaving directory `/home/rjones/d/febootstrap' make[1]: Leaving directory `/home/rjones/d/febootstrap' + make check Making check in lib make[1]: Entering directory `/home/rjones/d/febootstrap/lib' make check-recursive make[2]: Entering direct...