search for: glanc

Displaying 20 results from an estimated 2035 matches for "glanc".

Did you mean: glance
2016 Feb 16
3
[PATCH 0/2] v2v: glance: Allow Glance backend to import multiple disks
This patch series lifts the previous restriction that virt-v2v would refuse to convert a guest to Glance that had more than one disk. The first patch is just better documentation for the Glance output mode. The second patch contains the change (best viewed with 'git diff -w' since it is mostly a whitespace change). virt-v2v -o glance will now create multiple disks called: - guestname...
2016 Sep 13
1
[PATCH] v2v: -o glance: set all properties during creation (RHBZ#1374405)
The glance client v1.0.0 defaults to the Image v2 API: this means that an image can be referenced only by its UUID, and not anymore by the name as well (which does not need to be unique). This caused our glance invocation to set the properties for the newly created image to fail, since we are using the name...
2019 Oct 08
3
Glances for CentOS 8?
It seems that glances is not in EPEL for CentOS 8. Is that coming at some point, or has it been deprecated in favor of some other tool?
2020 Apr 06
2
Re: [v2v PATCH 2/2] Consolidate handling of temporary files/dirs
...small files > 2) cachedir, created as $LIBGUESTFS_CACHEDIR/virt-v2v.XXXXXX, for the > big files (e.g. disks) > This way there is no need to manually schedule all the temporary files > and directories for removal when the application quits. > --- Side note: > +++ b/v2v/output_glance.ml > @@ -27,16 +27,6 @@ open Types > open Utils > > class output_glance () = > - (* Although glance can slurp in a stream from stdin, unfortunately > - * 'qemu-img convert' cannot write to a stream (although I guess > - * it could be implemented at least fo...
2017 Apr 26
2
[PATCH 1/2] v2v: -o glance: add property for UEFI firmware (RHBZ#1445659)
When converting a guest with UEFI firmware, set the also hw_firmware_type=uefi property for all the disks of the guest, so Nova can properly boot the guest. --- v2v/output_glance.ml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/v2v/output_glance.ml b/v2v/output_glance.ml index b712d68..cfb19b4 100644 --- a/v2v/output_glance.ml +++ b/v2v/output_glance.ml @@ -41,7 +41,7 @@ object method as_options = "-o glance" - method supp...
2017 Apr 26
0
[PATCH 2/2] v2v: -o glance: factorize common properties
Many of the properties for disks are the same for all of them, so collect them only once, instead of doing that for every disk. Should be just code motion, with no behaviour change. --- v2v/output_glance.ml | 143 ++++++++++++++++++++++++++------------------------- 1 file changed, 73 insertions(+), 70 deletions(-) diff --git a/v2v/output_glance.ml b/v2v/output_glance.ml index cfb19b4..3feb2e4 100644 --- a/v2v/output_glance.ml +++ b/v2v/output_glance.ml @@ -66,6 +66,78 @@ object ) targets...
2016 Dec 12
3
Server turns off unexpectedly
...my experience, > excessive heat is the main reason for unexpected shutdown operations. I have had this in the past where either the CPU or PSU fan had died. I'll check both of these next time I'm on site, but I believe the PSU is fairly new anyway. > > I'm using the nifty Glances utility (available in EPEL) to do basic > monitoring. If your server overheats, you'll gradually see your > temperature indicator turn from green to purple and then to red. I know > there are other utilities, but this is good for checking this sort of > stuff in real-time. I inst...
2017 Mar 10
1
[PATCH] v2v: Refactor some command line error messages.
...his output mode") mode opt + in + (* Parse the output mode. *) if output_mode <> `Not_set && in_place then error (f_"-o and --in-place cannot be used at the same time"); @@ -341,13 +346,13 @@ read the man page virt-v2v(1). match output_mode with | `Glance -> if output_conn <> None then - error (f_"-o glance: -oc option cannot be used in this output mode"); + error_option_cannot_be_used_in_output_mode "glance" "-oc"; if output_storage <> None then - error (f_"-o gla...
2018 Aug 29
2
[PATCH 0/2] v2v: Add -o openstack target.
This patch implements output to OpenStack Cinder volumes using OpenStack APIs. It has only been lightly tested, but appears to work. There are some important things to understand about how this works: (1) You must run virt-v2v in a conversion appliance running on top of OpenStack. And you must supply the name or UUID of this appliance to virt-v2v using the ‘-oo server-id=NAME|UUID’ parameter.
2018 Aug 30
3
[PATCH v2 0/2] v2v: Add -o openstack target.
v1 was here: https://www.redhat.com/archives/libguestfs/2018-August/thread.html#00287 v2: - The -oa option now gives an error; apparently Cinder cannot generally control sparse/preallocated behaviour, although certain Cinder backends can. - The -os option maps to Cinder volume type; suggested by Matt Booth. - Add a simple test.
2019 Oct 08
0
Glances for CentOS 8?
On Mon, 7 Oct 2019 at 23:08, Wynona Stacy Lockwood <stacy at guppylog.com> wrote: > > It seems that glances is not in EPEL for CentOS 8. Is that coming at some > point, or has it been deprecated in favor of some other tool? Hi, Because RHEL releases are far apart, packages don't get automatically added to newer EPEL releases. Instead, packages are usually added after maintainers get a request...
2016 Nov 01
1
[PATCH] v2v: glance: Set hw_video_model property to qxl|cirrus (RHBZ#1374651).
Thanks: Vladik Romanovsky, Ming Xie. --- v2v/output_glance.ml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/v2v/output_glance.ml b/v2v/output_glance.ml index e38b172..179448b 100644 --- a/v2v/output_glance.ml +++ b/v2v/output_glance.ml @@ -92,6 +92,10 @@ object | Virtio_net -> "virtio" | E1000 -> "e10...
2017 May 08
0
Re: [libguestfs/libguestfs] v2v: -o glance: set all properties during creation (RHBZ#1374405) (1497a9f)
[Moved from https://github.com/libguestfs/libguestfs/commit/1497a9f7] On Fri, May 05, 2017 at 07:50:39AM -0700, doraPC wrote: > Where is this file we need to edit located? I cannot find it > anywhere on the FS ... I think I'm missing something :) There shouldn't be any file to edit. What's the actual problem you are having? Rich. -- Richard Jones, Virtualization Group, Red
2004 Jan 26
1
RE: Bluetooth discussions (quick glance to some BT products)
There are somes products available claiming to connect a BT headset, a cell phone and a phone land line all together. I've found some : http://www.geekzone.co.nz/content.asp?contentid=2079 http://www.clipcomm.co.kr/ The clipcomm BS-A101 sample price is : $570. It's VoIP land phone that can make/receive a voice call using your CTP cell phone or BT-enabled headset. Maybe the best system
2019 Sep 17
2
head.matrix can return 1000s of columns -- limit to n or add new argument?
...t;> Hamilton, Ontario, Canada >> Web: http::/socserv.mcmaster.ca/jfox >> >>> On Sep 17, 2019, at 2:52 AM, Pages, Herve <hpages at fredhutch.org> wrote: >>> >>> Hi, >>> >>> Alternatively, how about a new glance() generic that would do something >>> like this: >>> >>>> library(DelayedArray) >>>> glance <- DelayedArray:::show_compact_array >>> >>>> M <- matrix(rnorm(1e6), nrow = 1000L, ncol = 2000L) >>...
2018 Mar 27
1
[PATCH FOR DISCUSSION ONLY] v2v: Add -o kubevirt output mode.
...+++++++ v2v/output_kubevirt.mli | 24 +++++++++++ 4 files changed, 150 insertions(+) diff --git a/v2v/Makefile.am b/v2v/Makefile.am index f36731750..2f6953463 100644 --- a/v2v/Makefile.am +++ b/v2v/Makefile.am @@ -66,6 +66,7 @@ SOURCES_MLI = \ modules_list.mli \ name_from_disk.mli \ output_glance.mli \ + output_kubevirt.mli \ output_libvirt.mli \ output_local.mli \ output_null.mli \ @@ -132,6 +133,7 @@ SOURCES_ML = \ output_rhv_upload_precheck_source.ml \ output_rhv_upload.ml \ output_vdsm.ml \ + output_kubevirt.ml \ inspect_source.ml \ target_bus_assignment.ml \ cmdline....
2019 Oct 18
0
head.matrix can return 1000s of columns -- limit to n or add new argument?
...>> Web: http::/socserv.mcmaster.ca/jfox > >> > >>> On Sep 17, 2019, at 2:52 AM, Pages, Herve <hpages at fredhutch.org> > wrote: > >>> > >>> Hi, > >>> > >>> Alternatively, how about a new glance() generic that would do > something > >>> like this: > >>> > >>>> library(DelayedArray) > >>>> glance <- DelayedArray:::show_compact_array > >>> > >>>> M <- matrix(rnorm(1e6), nrow = 1...
2016 Dec 12
0
Server turns off unexpectedly
The lm_sensors package is required for the sensors module of glances to work. After installing lm_sensors, run sensors-detect. The sensors command will show the sensors detected and their current values. glances should then display the sensor readings. On 12/12/2016 06:37 AM, Gary Stainburn wrote: > On Monday 12 December 2016 11:01:52 Nicolas Kovacs wrote:...
2016 Dec 12
1
Server turns off unexpectedly
On Monday 12 December 2016 12:15:10 David Both wrote: > The lm_sensors package is required for the sensors module of glances to > work. After installing lm_sensors, run sensors-detect. The sensors > command will show the sensors detected and their current values. glances > should then display the sensor readings. Somewhere tucked in the back of my mind a memory is screaming no. Wasn't there a problem wit...
2013 Oct 17
0
Gluster Community Congratulates OpenStack Developers on Havana Release
The Gluster Community would like to congratulate the OpenStack Foundation and developers on the Havana release. With performance-boosting enhancements for OpenStack Block Storage (Cinder), Compute (Nova) and Image Service (Glance), as well as a native template language for OpenStack Orchestration (Heat), the OpenStack Havana release points the way to continued momentum for the OpenStack community. The many storage-related features in the Havana release coupled with the growing scope of typical OpenStack deployments demonst...