[PATCH 0/5] rbd improvements
by Mike Kelly
This series improves ceph rbd support in libguestfs. It uses the servers
list, adds support for a custom username, and starts to add support for
custom secret.
11 years, 6 months
Re: [Libguestfs] Virt-v2v virtio device limit?
by Richard W.M. Jones
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 drives.
The version under development will support many more (at least 250).
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Fedora Windows cross-compiler. Compile Windows programs, test, and
build Windows installers. Over 100 libraries supported.
http://fedoraproject.org/wiki/MinGW
11 years, 6 months
Signing release tarballs
by Richard W.M. Jones
I've started to sign release tarballs:
http://libguestfs.org/download/1.21-development/
The *.tar.gz.sig file is a PGP ASCII-armored signature of the
corresponding *.tar.gz file. It is signed using gpg2 with this key:
pub 4096R/E1B768A0 2011-10-11
Key fingerprint = F777 4FB1 AD07 4A7E 8C87 67EA 9173 8F73 E1B7 68A0
uid Richard W.M. Jones <rjones(a)redhat.com>
uid Richard W.M. Jones <rich(a)annexia.org>
sub 4096R/2D07308A 2011-10-11
I've only signed the two latest releases so far. I will go back and
sign the rest of the tarballs, but will wait for people here to
confirm that the signatures look good.
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) and turn machines into KVM guests.
http://libguestfs.org/virt-v2v
11 years, 6 months
[PATCH 1/2] perl: Fix install target for separated builds.
by Hilko Bengen
---
perl/Makefile.am | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/perl/Makefile.am b/perl/Makefile.am
index d34adbe..780024f 100644
--- a/perl/Makefile.am
+++ b/perl/Makefile.am
@@ -87,7 +87,8 @@ clean-local:
rm -f Makefile-pl
install-data-hook:
- $(MAKE) -f Makefile-pl DESTDIR=$(DESTDIR) install
+ $(MAKE) -C $(srcdir) -f $(abs_builddir)/Makefile-pl \
+ DESTDIR=$(DESTDIR) install
endif
--
1.7.10.4
11 years, 6 months