[libvirt-users] Failed to launch libvirt 1.2.7

2016-10-23 Thread Marina Danial
Hello, I am currently working on Redhat 6 - Kernel 2.6.32-358.el6.x86_64. It has by default libvirt 0.10.2. I wanted version 1.2.7. So I downloaded this and libvirt-1.2.7.tar.gz and I followed the following steps: 1. ./configure (with its default settings) 2. make 3. make install Currently,

Re: [libvirt-users] Libvirt adds extra parameters in domain XML

2016-10-17 Thread Marina Danial
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 \

[libvirt-users] Fwd: Libvirt adds extra parameters in domain XML

2016-10-17 Thread Marina Danial
let...@redhat.com> wrote: > On Thu, Oct 13, 2016 at 11:49:44AM +0200, Marina Danial wrote: > >> 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

[libvirt-users] Libvirt adds extra parameters in domain XML

2016-10-13 Thread Marina Danial
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.

[libvirt-users] How to use virDomainOpenConsole

2016-08-31 Thread Marina Danial
Hello, I have a quick question. Can anyone help with an example on how to use virDomainOpenConsole API in serial console access? Thanks Marina ___ libvirt-users mailing list libvirt-users@redhat.com https://www.redhat.com/mailman/listinfo/libvirt-users

[libvirt-users] Use libvirt to create an NIC on the guest machine and connect to an existing TAP interface

2016-08-29 Thread Marina Danial
Hello, I am facing the following issue. I have several TAP interfaces that are created by the following method on OpenVSwitch: *ovs-vsctl add-br br1* *sudo /usr/sbin/tunctl -t tap01 -p -u root* *sudo /sbin/ip link set tap01 up* *# Disable multicast* *sudo /sbin/ifconfig tap01 -multicast*