similar to: Plans for virt-p2v

Displaying 20 results from an estimated 30000 matches similar to: "Plans for virt-p2v"

2020 Mar 16
1
Re: [p2v PATCH 3/3] Ignore 'openstack' driver
On Mon, Mar 16, 2020 at 02:55:11PM +0100, Pino Toscano wrote: > The 'openstack' output mode requires few options, and virt-p2v does not > have the GUI bits for specifying them. > > Similar to commit 9b009aa4a3898648fe68301d1c5ed774a0bf2e38 (for > rhv-upload). > --- > ssh.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/ssh.c
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 +++
2011 Sep 28
1
Man pages for virt-p2v-server?
I just installed virt-v2v 0.8.3.1 on a Fedora 14 VM and was getting ready to set up a P2V migration. But the virt-p2v-server man pages only tell me about the GPL and that's it. Is the documentation for that .conf file someplace else now? Or don't I need it anymore? Thanks - Greg Scott
2019 Jul 03
7
[PATCH 0/6] p2v: make it more independent (part #2)
As preliminary steps in splitting virt-p2v to an own repository, continue making p2v more independent within libguestfs. This is accomplished by the following changes: - have only the authors in the about dialog, and read them from a local AUTHORS file - few more cleanups This is still not complete, although I believe most of the work needed is done, and it still makes p2v usable within
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
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 ---
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
2014 Nov 18
2
Re: virt-v2v: Died at /usr/bin/virt-p2v-server line 411
Le 17/11/2014 20:31, Richard W.M. Jones a écrit : > On Mon, Nov 17, 2014 at 07:45:12PM +0100, Nicolas Ecarnot wrote: >> But I would be enthusiastic to install a dedicated P2V server, on >> RH7, with the very last libguestfs, if that helps me to insure our >> future P2V will succeed. >> But according to what I understood so far, I'm not sure one can >> install
2015 Oct 08
1
fetching virt-p2v GUI on fedora 21
We need one simple deployment of converting a given server with some OS converted to a Virtual Machine. i.e. -> to have a simple Linux/fedora machine and install apache or any web server for testing or any application for that matter - the purpose here is to see if this application works after the conversion to a virtual machine -> Convert P2V using the tools. -> Start virtual machine
2014 Nov 19
2
Re: virt-v2v: Died at /usr/bin/virt-p2v-server line 411
Le 19/11/2014 18:12, Richard W.M. Jones a écrit : > On Wed, Nov 19, 2014 at 04:42:23PM +0100, Nicolas Ecarnot wrote: >> disks: >> nbd:localhost:33363 (raw) [sda] >> nbd:localhost:49584 (raw) [sdb] >> nbd:localhost:41988 (raw) [sdc] >> removable media: >> >> NICs: >> >> [ 0.0] Creating an overlay to protect the source from being modified
2019 Sep 12
1
[p2v PATCH] tests: require virt-v2v for functional tests
virt-v2v is definitely used by the functional tests that run virt-p2v, so check for it, and require it for running those tests. Reported by Rich. --- m4/p2v-tests.m4 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/m4/p2v-tests.m4 b/m4/p2v-tests.m4 index f679bc4..7de356d 100644 --- a/m4/p2v-tests.m4 +++ b/m4/p2v-tests.m4 @@ -25,11 +25,12 @@ AC_ARG_ENABLE([gnulib-tests],
2014 Nov 19
3
Re: virt-v2v: Died at /usr/bin/virt-p2v-server line 411
Le 18/11/2014 16:11, Richard W.M. Jones a écrit : > On Tue, Nov 18, 2014 at 03:06:44PM +0100, Nicolas Ecarnot wrote: > [...] >> Then I PXE-boot my source physical machine (well, at present, at >> test time, another VM but whatever), when getting the graphical >> prompt to connect to the conversion server, I get >> "Failed to start virt-v2v-server on remote
2018 Jun 12
2
[PATCH] p2v: Allow virt-v2v input and output drivers containing '-' (RHBZ#1590220).
The new ‘-o rhv-upload’ output mode contains a '-' character in the name, but the regular expression which matched the output of the virt-v2v command did not recognize '-' as a valid character. It ended up mapping this to just "rhv" meaning two "rhv" entries would appear in the list of output drivers. Thanks: Ming Xie. --- p2v/ssh.c | 4 ++-- 1 file changed,
2014 Nov 17
2
Re: virt-v2v: Died at /usr/bin/virt-p2v-server line 411
Hello, Answers below : Le 13/11/2014 16:06, Richard W.M. Jones a écrit : >>>> This is the last thing it does before unwinding: >>>> >>>> libguestfs: trace: cp "/transferxdTiHj/windows/rhev-apt.exe" "/Program >>>> Files/RedHat/V2V Firstboot" >>>> libguestfs: trace: cp = 0 >>>> >>>> So, maybe
2014 Dec 11
1
[PATCH] p2v: show error dialog if virt-v2v fails (RHBZ#1167601)
Ensure the control connection exits with the same status code as virt-v2v, and return an error from start_conversion if virt-v2v failed. --- p2v/conversion.c | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/p2v/conversion.c b/p2v/conversion.c index 9f5a3ad..4ff7ecc 100644 --- a/p2v/conversion.c +++ b/p2v/conversion.c @@ -100,6 +100,7 @@ start_conversion
2017 Dec 17
1
virt-p2v not recognising Hard Disks of Server
Hello, I am trying to convert a physical server (10 year old hardware with PCI LSI Loging / Symbios LSI MegaRAID controller and SCSI drives, RAID 5 Configuration) into a Virtual Machine in oVirt (oVirt Version 4.1.8). Host to be converted has Fedora 5 OS. I have downloaded the virt-p2v.iso (Cent OS 7.3). I have prepared the conversion server, set it up as a VM in oVirt environment. I am able
2018 Jun 12
1
Re: [PATCH] p2v: Allow virt-v2v input and output drivers containing '-' (RHBZ#1590220).
On Tue, Jun 12, 2018 at 12:13:32PM +0200, Pino Toscano wrote: > On Tuesday, 12 June 2018 11:27:56 CEST Richard W.M. Jones wrote: > > The new ‘-o rhv-upload’ output mode contains a '-' character in the > > name, but the regular expression which matched the output of the > > virt-v2v command did not recognize '-' as a valid character. It ended > > up
2014 Nov 10
2
virt-v2v: Died at /usr/bin/virt-p2v-server line 411
Hi, In a oVirt 3.4.4 environnement, and using a virt-p2v-0.9.1-2.20130730.1.el6.centos, I'm trying to convert a windows 2003 server 32 bits into an oVirt KVM image. I already succeed doing that many times, but now, this is failing : - All the usual process sounds good : PXE -> DHCP -> connection to the P2V server -> choosing the profile -> (checking the debug option) ->