Displaying 20 results from an estimated 10000 matches similar to: "Free P2V Tools for Xen"
2008 Feb 07
6
Loading FreeBSD in an HVM-domain on Intel-based host with GRUB
Hello all,
please tell me,
is it possible (at least theoretically)
to circumvent bug 622 [1] by using
GRUB instead of /boot/loader to load FreeBSD kernel?
Or it is silly idea: even if we bypass /boot/loader we will
not be able to run FreeBSD kernel in a HVM-domain on a
Intel-based host for some other reason?
As far as I know, GRUB can''t load FreeBSD kernel
directly, but only can
2017 Mar 16
2
[PATCH 1/2] p2v: Free config struct before exit.
Memory leak found by valgrind.
---
p2v/main.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/p2v/main.c b/p2v/main.c
index e1a7550..7f1e1c0 100644
--- a/p2v/main.c
+++ b/p2v/main.c
@@ -260,6 +260,7 @@ main (int argc, char *argv[])
}
guestfs_int_free_string_list (cmdline);
+ free_config (config);
exit (EXIT_SUCCESS);
}
--
2.10.2
2014 Aug 19
4
How do I do Centos 7 p2v migration?
Hi,
I am trying to figure out how to do p2v and v2v migrations on a Centos 7 kvm
host. With previous versions there was virt-p2v but that does not seem to exist
with Centos-7.
I realize that if I am using shared storage, I can do live migrations but
that does not help with p2v migrations.
Does anyone know what the recommended procedure is for migrating either
physical or virtual machines to
2011 Nov 23
2
Windows P2V migration temporary recipe
These are the current steps we followed to set up and run Windows P2V migrations. Note that development is proceeding rapidly and the versions of all pieces below will likely be obsolete soon.
*************************************************************
Windows RHEV P2V Cookbook 2011-1122
1. Install 32 bit Fedora 14 as a virtual machine or physical host. You will use this system to
build
2011 Jun 23
1
Trying to get started with virt-p2v
I need to p2v migrate a Windows server and I am soooo confused!
By now, I've done a few virt-v2v migrations, so I get how that works. I
attended Richard and Matthew's Red Hat Summit talk about virt-p2v and
just now downloaded the handouts.
If I understand what's going on, virt-p2v is pretty much the same as
virt-v2v, except that the physical system to migrate from needs to boot
2010 Sep 24
3
Any zfs fault injection tools?
Folks,
Command "zpool status" reports disk status that includes read errors, write errors, and checksum errors. These values have always been 0 in our test environment. Is there any tool out there that can corrupt the state? At the very least, we should be able to write to the disk directly and mess up the checksum.
Thank you in advance for your help.
Regards,
Peter
--
This message
2008 Apr 13
2
Xen and FressBSD
Hi there,
is it possible to install a FreeBSD as Xen VM?
All links which i found at google were down :(
Anyone a good and simple howto?
greetz
--
Mit freundlichen Grüßen
Daniel
mailto:daniel@listmails.de
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2016 May 26
1
Re: [PATCH 3/3] p2v: Add a 'make run-virt-p2v' rule which boots virt-p2v in a VM.
On Thursday 26 May 2016 16:40:16 Richard W.M. Jones wrote:
> A convenience method instead of having to work out the right
> qemu command line each time.
> ---
> .gitignore | 1 +
> p2v/Makefile.am | 28 ++++++++++++++++++++++++++++
> 2 files changed, 29 insertions(+)
>
> diff --git a/.gitignore b/.gitignore
> index 285b28d..8509a9d 100644
> --- a/.gitignore
2016 Jun 23
2
[PATCH] p2v: kiwi: make sure launch-virt-p2v is executable
virt-p2v-make-kiwi now forces the launch-virt-p2v mode to 0755 to
ensure the executable bit it set for user.
---
p2v/virt-p2v-make-kiwi.in | 1 +
1 file changed, 1 insertion(+)
diff --git a/p2v/virt-p2v-make-kiwi.in b/p2v/virt-p2v-make-kiwi.in
index e493bd4..3506e9b 100644
--- a/p2v/virt-p2v-make-kiwi.in
+++ b/p2v/virt-p2v-make-kiwi.in
@@ -190,6 +190,7 @@ cp $datadir/issue $output/root/etc/issue
2023 Jan 30
1
[p2v PATCH 02/11] Introduce "p2v.output.misc" for passing "-oo" options to virt-v2v
From: Alban Lecorps <alban.lecorps at ubisoft.com>
The "-oo" option will be useful primarily for the openstack output mode
(currently disabled, from commit b74c126629e3, "Ignore 'openstack'
driver", 2020-03-16).
Use a ConfigStringList knob for "-oo", and for each OPTION=VALUE element
in that list, create a separate "-oo OPTION=VALUE" option.
2017 Mar 17
5
[PATCH 0/4] p2v: fix virt-p2v-make-disk on Debian
Hi,
this small series fixes the generation of Debian-based images using
virt-p2v-make-disk. With this series, the image can boot fine, X is
started, and the p2v interface appears. I haven't tried an actual
conversion, but I don't think there are Debian-specific problems
preventing that.
Thanks,
Pino Toscano (4):
p2v: fix Gtk dependencies on Debian
p2v: remove
2019 Sep 27
1
[p2v PATCH] tests: fix run-virt-p2v-in-a-vm helper target
It relied on the qemu libguestfs was configured with, which is no more
available now. Since we already require libguestfs tools for some
functional tests, make run-virt-p2v-in-a-vm depend on libguestfs too,
and use the qemu configured in libguestfs.
---
Makefile.am | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/Makefile.am b/Makefile.am
index d27219d..d1b4bee 100644
---
2019 Sep 26
1
[p2v PATCH] make-disk: set p2v.local as hostname
Set p2v.local as hostname for the p2v disk image, so it will be fixed,
instead of whatever is set in the used templates. This is also somewhat
important during the distribution update, and installation of our
packages: there may be distribution packages actually using the hostname
to initialize stuff (e.g. configuration values), and thus the unset
value "(none)" triggers errors.
The
2017 Jan 20
1
[PATCH] p2v: log also environment on conversion server
Save the content of the environment on the conversion server, so it is
one additional help when debugging failed conversions.
---
p2v/conversion.c | 5 +++++
p2v/virt-p2v.pod | 6 ++++++
2 files changed, 11 insertions(+)
diff --git a/p2v/conversion.c b/p2v/conversion.c
index 3c379cb..b8bab34 100644
--- a/p2v/conversion.c
+++ b/p2v/conversion.c
@@ -1061,6 +1061,11 @@ generate_wrapper_script
2019 Jul 08
5
[PATCH 0/4] p2v: more bits of independence (#3)
These are more small bits to make p2v more independent, and they will
help after the split.
Pino Toscano (4):
p2v: clean also the test images
p2v: consider p2v-config.h as generated source
p2v: fix tests with srcdir!=builddir
p2v: split appliance tests in own variable
p2v/Makefile.am | 13 +++++++++----
p2v/test-virt-p2v-docs.sh | 2 +-
p2v/test-virt-p2v-nbdkit.sh | 4
2019 Sep 25
1
Re: [p2v PATCH] Document the root password for the disk images.
On 9/25/19 10:40 AM, Richard W.M. Jones wrote:
> On Wed, Sep 25, 2019 at 03:16:18PM +0200, Pino Toscano wrote:
>> Mention what is the password of the root user on the disk images created
>> by virt-p2v-make-disk, virt-p2v-make-kickstart, and virt-p2v-make-kiwi,
>> so users know how to login in the live p2v system.
>> ---
>> virt-p2v-make-disk.pod | 2 ++
2019 Aug 20
1
Re: [PATCH 1/6] p2v: move kernel config to perl script
Unfortunately this breaks RHEL 7 builds :-(
On Mon, Jul 01, 2019 at 06:51:17PM +0200, Pino Toscano wrote:
> diff --git a/p2v/generate-p2v-config.pl b/p2v/generate-p2v-config.pl
> new file mode 100755
> index 000000000..dc36abbda
> --- /dev/null
> +++ b/p2v/generate-p2v-config.pl
> +use List::Util qw(any);
GEN p2v-config.h
"any" is not exported by the
2019 Sep 25
2
[p2v PATCH] Document the root password for the disk images.
Mention what is the password of the root user on the disk images created
by virt-p2v-make-disk, virt-p2v-make-kickstart, and virt-p2v-make-kiwi,
so users know how to login in the live p2v system.
---
virt-p2v-make-disk.pod | 2 ++
virt-p2v-make-kickstart.pod | 2 ++
virt-p2v-make-kiwi.pod | 2 ++
3 files changed, 6 insertions(+)
diff --git a/virt-p2v-make-disk.pod
2019 Sep 23
1
[p2v PATCH] doc: start filling release notes
Add a minimal release note text for the first standalone version,
virt-p2v 1.41.0; in addition, add the first items for the future
1.42.0.
---
docs/p2v-release-notes.pod | 32 ++++++++++++++++++++++++++------
1 file changed, 26 insertions(+), 6 deletions(-)
diff --git a/docs/p2v-release-notes.pod b/docs/p2v-release-notes.pod
index ee0dd98..21d736d 100644
--- a/docs/p2v-release-notes.pod
+++
2013 Oct 01
1
9.2-PRE: switch off that stupid "Nakatomi Socrates"
>
> Message: 6
> Date: Mon, 30 Sep 2013 20:23:16 +0200
> From: David Demelier <demelier.david at gmail.com>
> To: freebsd-stable at freebsd.org
> Subject: Re: 9.2-PRE: switch off that stupid "Nakatomi Socrates"
> Message-ID: <5249C194.8030504 at gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> On 30.09.2013 15:50, Matthieu Volat