search for: msg00039

Displaying 12 results from an estimated 12 matches for "msg00039".

Did you mean: msg00038
2015 Sep 29
1
CentOS 6 Xen virt* issues
...may have to respin > that one as well. > I think it's specified at least in python-virtinst. See these emails from a few years back about the tap/tap2-issue: https://www.redhat.com/archives/virt-tools-list/2013-June/msg00037.html https://www.redhat.com/archives/virt-tools-list/2013-June/msg00039.html > While we're here, could you give me a couple of virt-install and > virt-viewer "smoketest" commands that I could add to my automated test > scripts? ATM I'm testing libvirt by using virsh to import an xl .cfg > file, but it would be better to have something...
2015 Sep 29
2
CentOS 6 Xen virt* issues
On Sat, Sep 26, 2015 at 9:29 PM, Pasi K?rkk?inen <pasik at iki.fi> wrote: > On Sat, Sep 26, 2015 at 09:04:23PM +0300, Pasi K?rkk?inen wrote: >> Hello, >> >> I just upgraded some of my el6xen boxes to latest CentOS 6.7, Xen 4.4.3 and dom0 3.18.17 rpms, and noticed these new problems: >> > > And third issue aswell: > > 3) Creating an HVM guest using
2015 Jul 16
0
Re: virt and ovirt support
...hose are not available are there any other locations, repositories or > proposed dates for the virt-v2* package family to become available for > centos. Please see here: https://www.redhat.com/archives/libguestfs/2015-April/msg00038.html https://www.redhat.com/archives/libguestfs/2015-April/msg00039.html Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming and virtualization blog: http://rwmj.wordpress.com virt-p2v converts physical machines to virtual machines. Boot with a live CD or over the network (PXE) and turn machines into KVM gu...
2015 Jul 29
1
Redhat v2v
Hi, I am looking for the package, virt-v2v, for Redhat 7 to convert virtual machines under Xen in Redhat 5 to KVM. But, can't find it from the 7 and neither from the public websites. Why wasn’t virt-v2v included with 7 from the get-go? And, pls also advise for the downloading sites if possible. Regards, Philip Li
2017 Sep 12
0
Re: [PATCH] lib: direct: Disable qemu locking when opening drives readonly.
...+ if (guestfs_int_version_ge (&data->qemu_version, 2, 10, 0)) > > + append_list ("locking=off"); > > Don't we have a way to enumerate supported options? Yes, although it's difficult to do: https://www.redhat.com/archives/libguestfs/2017-September/msg00039.html Rich. > Depending on QEMU version is not going to play nice with vendor-shipped > QEMU where features are often backported. > > > + } > > append_list_format ("cache=%s", > > drv->cachemode ? drv->cachemode : "w...
2016 Dec 28
2
how to modified virsh's editor forever?
Hi: when I modify VM's xml file,the editor is VI,how to set to other editor forever? Now I can change the editor to VIM from VI with setting environment EDITOR=$my-favorite-editor, but after rebooting,it is VI again. thanks
2016 Dec 28
0
Re: how to modified virsh's editor forever?
Hello dw, Can you plz try this method and check if it works: Set the preferred editor in /etc/environment file (to define it globally) and then restart the session. You may follow these links for more info on the topic. Link 1: https://www.redhat.com/archives/libvirt-users/2014-September/msg00039.html Link 2: https://askubuntu.com/questions/432524/how-do-i-find-and-set-my-editor-environment-variable Thanks, Nitesh. On Wed, Dec 28, 2016 at 2:30 PM, dw <dwlinuxkernel@163.com> wrote: > Hi: > > when I modify VM's xml file,the editor is VI,how to set to other > edi...
2014 Mar 05
0
IPv6 nwfilter
Are there any nwfilter rules out there for IPv6? I'm looking for something similar to clean-traffic, but that works with IPv6. I found some mailing list posts from 2012 ( https://www.redhat.com/archives/libvirt-users/2012-November/msg00039.html ), but they don't seem to actually go anywhere. The hard part here seems to be determining all the different ways IPv6 traffic can be bad.
2015 Sep 29
0
CentOS 6 Xen virt* issues
...one as well. >> > > I think it's specified at least in python-virtinst. See these emails from a few years back about the tap/tap2-issue: > > https://www.redhat.com/archives/virt-tools-list/2013-June/msg00037.html > https://www.redhat.com/archives/virt-tools-list/2013-June/msg00039.html This is indeed where it was patched before (as a stand alone program) .. have they now rolled that into virt-manager? > > >> While we're here, could you give me a couple of virt-install and >> virt-viewer "smoketest" commands that I could add to my automate...
2017 Sep 05
4
[PATCH] lib: direct: Disable qemu locking when opening drives
Incomplete fix for https://bugzilla.redhat.com/show_bug.cgi?id=1417306 The full fix is waiting for a libvirt change, but this can still go upstream. Rich.
2018 Dec 03
3
[PATCH nbdkit v3] common: Move shared bitmap code to a common library.
v2: https://www.redhat.com/archives/libguestfs/2018-December/msg00039.html v2 -> v3: - Fix all the issues raised in Eric's review. - Precompute some numbers to make the calculations easier. - Calculations now use bitshifts and masks in preference to division and modulo. - Clear existing bits before setting (which fixes a bug in the cache filter)...
2017 Sep 12
9
[PATCH v2 0/5] launch: direct: Disable qemu locking when opening drives readonly (RHBZ#1417306)
Patches 1-4 are almost the same as they are when previously posted here: https://www.redhat.com/archives/libguestfs/2017-September/msg00039.html Patch 5 actually uses the mandatory locking test to turn off locking in the narrow case where a drive is opened readonly, and then only for the drive being inspected. Passes ordinary tests (‘check-direct’ and ‘check-valgrind-direct’). Rich.