similar to: Doc/web site problems

Displaying 20 results from an estimated 11000 matches similar to: "Doc/web site problems"

2013 Nov 13
2
Re: Doc/web site problems
On Mon, Nov 11, 2013, at 07:17 PM, Eric Blake wrote: > On 11/11/2013 05:04 PM, Greg Ward wrote: > > 2) In the FAQ, under "networking is unavailable in virt-manager / virsh > > - libvirt's default network fails to start", it says "Here is a list of > > the networking-related packages that need to be installed for libvirt > > networking to work
2013 Nov 13
0
Re: Doc/web site problems
On 11/13/2013 08:44 AM, Greg Ward wrote: > > > On Mon, Nov 11, 2013, at 07:17 PM, Eric Blake wrote: >> On 11/11/2013 05:04 PM, Greg Ward wrote: >>> 2) In the FAQ, under "networking is unavailable in virt-manager / virsh >>> - libvirt's default network fails to start", it says "Here is a list of >>> the networking-related packages that
2013 Nov 12
0
Re: Doc/web site problems
On 11/11/2013 05:04 PM, Greg Ward wrote: > Hi all -- > > I have one meta-question, and two real questions. > > 1) What's the best place to report bugs in the docs, FAQ, web site, or > wiki? I have found two -- see next points. (I'm happy to make the fixes > myself if I can, but I'm pretty ignorant about libvirt. Can't fix the > docs without knowing the
2012 Jan 24
2
how to change existing domain xml?
Hi. I'm trying to change network settings for a domain via libvirt (the driver is xenapi) with no success. According to its sources, 'virsh edit' uses virDomainGetXMLDesc(), allows to edit the received xml and then use virDomainDefineXML(). In case of xenapi driver it leads to a new vm creation (with the same name and edited settings). Looking through the list of API functions I
2013 Jun 18
2
libvirt hang on domain attemp to create domain
good day, i am trying to create domain via virDomainDefineXML. and my program hanging, also i failed to caonnect to libvirt daemon with virt-manager after this, only killing libvirtd via SIGKILL and restarting it solveing hang (i mean after restart i able to connect with virt-manager), i using following domain xml <?xml version="1.0" encoding="UTF-8"?> <domain
2013 Jun 19
3
Re: libvirt hang on domain attemp to create domain
В письме от Среда, 19-июн-2013 09:35:27 пользователь Michal Privoznik написал: > On 18.06.2013 22:21, Александр wrote: > > В письме от Вторник, 18-июн-2013 12:10:41 пользователь Michal Privoznik > > > > написал: > >> On 18.06.2013 07:14, Александр wrote: > >>> good day, i am trying to create domain via virDomainDefineXML. and my > >>> program
2013 Jun 18
2
Re: libvirt hang on domain attemp to create domain
В письме от Вторник, 18-июн-2013 12:10:41 пользователь Michal Privoznik написал: > On 18.06.2013 07:14, Александр wrote: > > good day, i am trying to create domain via virDomainDefineXML. and my > > program hanging, also i failed to caonnect to libvirt daemon with > > virt-manager after this, only killing libvirtd via SIGKILL and restarting > > it solveing hang (i mean
2010 Oct 01
1
undefining and redefining a Domain
<resending as I don't think I was in the mailing list yet when I sent first time... apologies if you receive this twice> Hello, I'm facing some strange behavior, and I hope you can provide a clarification. Consider the following code: virDomainPtr dom = virDomainLookupByName(virt, domain_name); if (dom) { printf("domain already
2016 Oct 13
3
Libvirt adds extra parameters in domain XML
Hello, In my C++ code, I generate my own domain XML file and I use virDomainCreateXML or virDomainDefineXML to launch my qemu VM. However, when I get to check which commands are sent to the qemu commandline, I find that libvirt has added so many extra parameters to the ones I have already set. How can I prevent libvirt from adding any extra parameters to the ones I originally defined in the
2016 Oct 17
2
Re: Libvirt adds extra parameters in domain XML
On Mon, Oct 17, 2016 at 02:29:10PM +0200, Marina Danial wrote: >I have a predetermined set of commands that I want to launch qemu with: > >sudo `which qemu-system-x86_64` -m 4G $(IMAGE) -enable-kvm \ >-nographic \ >-net nic,model=virtio,netdev=net0,macaddr=$(MAC),vlan=0 \ >-netdev tap,id=net0,ifname=tap01,vhost=on,script=no,downscript=no \ >-net
2013 Jun 20
2
Re: libvirt hang on domain attemp to create domain
On 20.06.2013 12:56, Alexandr wrote: > On 20.06.2013 10:44, Michal Privoznik wrote: >> On 20.06.2013 09:40, Александр wrote: >>> В письме от Четверг, 20-июн-2013 09:15:14 Вы написали: >>>> On 19.06.2013 21:24, Александр wrote: >>>>> В письме от Среда, 19-июн-2013 09:35:27 пользователь Michal Privoznik >>> написал: >>>>>> On
2011 Sep 09
1
virDomainDefineXml Issue
Hello Everyone, I am facing a problem in defining the xml for domain creation using libvirt. I am using Xen hypervisor. domPtr = lib.virDomainDefineXML(conPtr, domainXML); I get the following error: "libvir: Xen Daemon error : XML error: failed to parse domain description" Any suggestions are welcome. Regards. -------------- next part -------------- An HTML attachment
2013 Jul 08
2
Re: deadlock on connection loosing
On 07.07.2013 01:53, Александр wrote: > В письме от Воскресенье, 30-июн-2013 03:41:37 пользователь Александр написал: >> В письме от Вторник, 25-июн-2013 11:47:10 пользователь Michal Privoznik .... > > i have found source of problem, my code looks like this: > > int count = virConnectListAllDomains(connection, NULL, 0); > .... > domain = virDomainDefineXML(connection,
2018 Apr 26
2
how xml generated
hi : i create a domain by virt-manager tool, then there is a xxx.xml generated in /etc/libvirt/qemu/. so, my question is how the xx.xml generated? What the code involves in libvirt ? Thanks! -- Have a good day
2013 Jun 30
2
Re: deadlock on connection loosing
В письме от Вторник, 25-июн-2013 11:47:10 пользователь Michal Privoznik написал: > On 24.06.2013 11:36, Александр wrote: > > libvirtd will lock if for example kill programm which established > > connection,> > > only sigkill + restart helps., to reproduce: > > virConnectPtr libvirt_connection = virConnectOpen("qemu:///system"); > >
2009 Aug 26
2
Error starting a virtual machine
I've been playing with ovirt built from source. When I try to start my first VM, I get this error in taskomatic.log: INFO Wed Aug 26 14:33:28 -0600 2009 (12750) starting task_start_vm INFO Wed Aug 26 14:33:29 -0600 2009 (12750) VM will be started on node node94.ovirt.priv DEBUG Wed Aug 26 14:33:29 -0600 2009 (12750) Connecting volumes: DEBUG Wed Aug 26 14:33:29 -0600 2009 (12750) XML Domain
2015 Apr 21
3
Re: QemuDomainObjEndJob called when libvirtd is started and libvirt insists qemu is using the wrong disk source.
On 04/20/2015 05:42 PM, Laine Stump wrote: > Well, this is when the qemu process is killed (I'm pretty clever, eh? :-) > > I have 3 questions: > > 1) what version of libvirt are you running and on what distro? > > 2) can you reproduce this reliably? > > 3) If the answer to 2 is "yes", do you have the libvirt-debuginfo > package installed, and can you
2011 Aug 26
1
Help!
Buddy, I am a noob in libvirt develop. When I want to create a domain by using virDomainDefineXML and displays a window on the host desktop. But when I add the line " <graphics type='sdl' display=':0.0'/>" into the config xml file, the error as below will happen. libvir: QEMU error : internal error process exited while connecting to monitor: Could not initialize
2001 Jan 04
0
moved doc site.
The vorbis source browser and newbie docs that I used to host in Montreal are now in New York. At least for now. The old beta2 encoder document has many links that work again, reflecting some of the beta3 directory changes. While the document still is 95% beta2-centric, it is -slowly- being updated to reflect the beta3+ CVS trunk. Vorbis newbies who are ready to jump into browsing the source
2010 May 05
2
Full documentation for virsh?
Hello, Does anyone know where full documentation for virsh can be found? Or if the there are any plans to update the man page? The man page lists far fewer commands than virsh lists from its interactive mode when you type help. I noticed this when I was trying to figure out the difference between pool-destroy, and pool-delete. The help entries in the virsh shell are not very informative: