similar to: Virsh with CPU features on XML file not working!

Displaying 20 results from an estimated 10000 matches similar to: "Virsh with CPU features on XML file not working!"

2017 Jul 05
0
Re: Question about disabling '3dnowprefetch' CPU feature in Xen Guest using libvirt
On 06/18/2017 09:01 PM, Charles Shih wrote: > Dear All, > > I'm reaching this mail-list to ask a small question about disabling > '3dnowprefetch' CPU feature in Xen Guest using libvirt. > > This is my environment: > Fedora release 26 (Twenty Six) > 4.11.0-0.rc3.git0.2.fc26.x86_64 > xen-4.8.1-2.fc26.x86_64 >
2017 Jun 19
2
Question about disabling '3dnowprefetch' CPU feature in Xen Guest using libvirt
Dear All, I'm reaching this mail-list to ask a small question about disabling '3dnowprefetch' CPU feature in Xen Guest using libvirt. This is my environment: Fedora release 26 (Twenty Six) 4.11.0-0.rc3.git0.2.fc26.x86_64 xen-4.8.1-2.fc26.x86_64 libvirt-3.2.1-1.fc26.x86_64 I can disable '3dnowprefetch' CPU feature in guest via 'xl' command,
2010 May 19
1
Update of libvirt website required. not all information about XML tags
The problem desribed here: https://bugzilla.redhat.com/show_bug.cgi?id=593266 Please update http://www.libvirt.org/formatdomain.html and describe NEW xml tags, like <serial>xxxx</serial> for hard drive and all cpu tags, other if any. -- Segmentation fault
2017 Mar 16
0
[PATCH 1/4] p2v: Pass host CPU details to virt-v2v.
In the fake <domain type='physical'> libvirt XML that we create to describe the physical host, we did not accurately pass any information about the host CPU except the number of cores (<vcpu/>). This commit extracts detailed information about the vendor, model and topology of the host CPU and adds that to the libvirt XML for virt-v2v. Conveniently we can use libvirt
2018 Nov 02
0
[PATCH v3 4/4] lib, p2v: Use single_element() macro where possible.
After the previous commit, wherever we had: start_element ("foo") { string ("bar"); } end_element (); this can now be replaced by: single_element ("foo", "bar"); --- common/utils/libxml2-writer-macros.h | 2 +- lib/launch-libvirt.c | 78 ++++++++-------------------- p2v/physical-xml.c | 15 ++---- 3 files
2017 Mar 23
2
[PATCH] p2v: Use lscpu instead of libvirt to get CPU information.
Don't get the CPU information from libvirt, because including libvirt and all dependencies in the virt-p2v ISO bloats everything. Instead get most of the information we need from the util-linux program 'lscpu'. Unfortunately the CPU model cannot be retrieved. Example output: $ ./run virt-p2v --cmdline="p2v.dump_config_and_exit" [...] cpu vendor . . . Intel cpu
2018 Mar 29
2
Using alias under disk in XML
I've been trying to follow the information found here [1] in order to provide an alias for RBD disks I'm defining, however it does not appear to be working and I wanted to see if I was doing something wrong. I define the alias like so (using 'virsh edit'): <disk type='file' device='disk'> <driver name='qemu' type='qcow2'
2010 Oct 07
1
setting hostname in xen config .xml file
Hello All: I am trying to set the hostname of VMs at boot time and banging my head against the wall. I am using virsh create xen-config.xml to boot a Scientific Linux 5.5 image. I have gone through the libvirt domain xml format at http://libvirt.org/formatdomain.html#elementsResources and I don''t see anywhere to set the hostname in there. I am using pygrub for the bootloader
2013 Jan 14
1
LibVirt CPU problem
Hi, I?m testing to start a KVM-VM with different CPU settings and I get an weird error when I use the parameter: <cpu mode='host-model'> !! I have a AMD Opteron 4280 CPU, but in the VM, proc/cpuinfo shows me, that I?m using Intel core2duo cpu model T7700 and in the flag-line of proc/cpu the system is listing the svm-flag of AMD?!?! If I use <cpu
2011 Sep 26
1
virsh edit problems
I've got a problem where I can't access my console (well, I can', but I can't type in a password), which I don't think is a libvirt issue but any help or commentary is certainly welcome http://thread.gmane.org/gmane.comp.emulators.kvm.devel/79561 , and I'm trying to debug it by trying out different console/serial options in my .xml file, and I can't change them. What I
2015 Jul 09
0
Re: adding devices and chardev in .xml configuration file ...
On Thu, Jul 09, 2015 at 12:27:20PM +0000, Jean-Pierre Ribeauville wrote: >Hi, > >As I want to start qemu by adding following parameters : > > >-device virtio-serial >-chardev socket,path=/tmp/foo,server,nowait,id=test >-device virtserialport,chardev=test,name=port.0 > >Is it possible to add them in the .xml configuration file of the guest , so they will be
2016 Sep 20
0
Re: How to set QEMU qcow2 l2-cache-size using libvirt xml?
On Mon, Sep 19, 2016 at 11:32:26AM -0400, Frank Myhr wrote: >QEMU's default qcow2 L2 cache size is too small for large images (and small cluster sizes), resulting in very bad performance. > >https://blogs.igalia.com/berto/2015/12/17/improving-disk-io-performance-in-qemu-2-5-with-the-qcow2-l2-cache/ >shows huge performance hit for a 20GB qcow2 with default 64kB cluster size: >
2019 Jul 18
0
Re: domain xml questions
On Thu, Jul 18, 2019 at 10:39:09AM +0300, Vasiliy Tolstov wrote: > Hi! > If i want to use bridged network or openvswitch, does guestfwd only > works with slirp network? Or how it work in case of using > bridge/openvswitch? It is only supported with type=user (aka slirp) networking. > <devices> > <channel type='unix'> > <source mode='bind'
2023 Feb 28
0
Unable to create a VM in a specific network namespace using the Domain XML descriptions and API for libvirt + QEMU over KVM
I have a system where I spawn a single libvirt daemon process in the default network namespace. Once the daemon is running, I create and start VMs using the virDomainDefineXML API (defines a VM or "domain" but does not boot it) followed by the virDomainCreate API (boot the VM). Now, I am trying to create these VMs in generic network namespaces provided by the user e.g.,
2023 May 19
0
Adding custom xml:ns to definitions for additional application
Hi, I'm looking at adding support to vagrant-libvirt to add some additional XML to the network definitions it creates following https://libvirt.org/formatnetwork.html#general-metadata assuming the metadata element is to be treated the same as what is listed for domains https://libvirt.org/formatdomain.html#general-metadata (app metadata isn't explained What I was wondering is if there
2013 May 31
0
iSCSI-based Storage Pool and virsh attach-device problems/questions
Hello all, I am attempting to use the 'virsh attach-device' command to add storage to a guest from a pre-defined iSCSI-based storage pool. My desire is to attach a volume from the storage pool and have the storage pool recognize that the volume is in use and either flag it as such, or remove it from the pool so that subsequent queries to the pool will only return available storage
2015 Feb 05
0
Re: CPU model and type
you can set the CPU type and model and features https://libvirt.org/formatdomain.html I usually give it during the virt-install as -cpu core2duo,+vmx (the ,+vmx will enable vmx vt extensions on the guest CPU ) ... <cpu match='exact'> <model fallback='allow'>core2duo</model> <vendor>Intel</vendor> <topology sockets='1'
2015 Apr 13
0
Re: CPU Resource Reservation using KVM
On Mon, Apr 13, 2015 at 01:41:59PM +0530, Jatin Davey wrote: > On 4/13/2015 1:18 PM, Kashyap Chamarthy wrote: > >On Mon, Apr 13, 2015 at 12:14:12PM +0530, Jatin Davey wrote: > >>Hi All > >> > >>I am new to KVM world. I have been using VMware for about a year. > >> > >>In VMware world we can reserve cpu resources for a VM. Say for instance if
2015 Aug 12
0
Re: PCI passthrough fails in virsh: iommu group is not viable
On 08/12/2015 02:34 PM, Alex Holst wrote: > I would really appreciate some pointers on what I am doing wrong here. > > I have a need to run multiple virtual guests which have each their own GPU and > some USB controllers passed-through. I am able to run one of the guests like > this (assuming vfio stuff has happened elsewhere), but I would prefer to use > virsh: > > kvm -M
2002 Jun 10
1
XML to Dataframe
Hello all, Is there a function to convert data stored as a .xml file to a data frame in R? Thank you in advance Antonio -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: