search for: application_development_guid

Displaying 11 results from an estimated 11 matches for "application_development_guid".

2015 Oct 30
2
Creating network interfaces with specific name in LXC
...L: <interface type='network' name='blah'> <source network='dpbr_n_0'/> </interface> This doesn't seem to work; it always ends up creating interface with name as "eth0". I found some examples here: http://libvirt.org/guide/html/Application_Development_Guide-Network_Interfaces-XML_Format.html That uses interface type as "ethernet" and specifies name also, If I do that, I get back an error while starting the container as "Unsupported network type ethernet". Appreciate your help. Regards, Harish
2015 Oct 30
2
Re: Creating network interfaces with specific name in LXC
...the things you can configure in <interface/> and what does each option > mean. > > This doesn't seem to work; it always ends up creating interface with name >> as "eth0". >> >> I found some examples here: >> >> http://libvirt.org/guide/html/Application_Development_Guide-Network_Interfaces-XML_Format.html >> >> That uses interface type as "ethernet" and specifies name also, If I do >> that, I get back an error while starting the container as "Unsupported >> network type ethernet". >> >> Appreciate your help....
2015 Apr 21
1
Libvirt disk API
Hi all: I am studying Libvirt API , I am wondering the API about the disk manage is TBD(to be difine). The edition is libvirt 0.7.5 ,but the edition is too old ,The website is http://libvirt.org/guide/html/Application_Development_Guide-Introduction.html So, if I want to manage the VM disk , for example read the disk, what should I do ? Sincerely thanks a lot
2012 Nov 12
1
where is libvirt-python document??
Hi libvirt users: Who can tell me where is the fucking doc? I want to use libvirt-python in my project.But I can't found the doc. I only found "TBD" in http://libvirt.org/guide/html/Application_Development_Guide-Language_Bindings.html Did I miss something? Thanks. -- ???: http://www.xuanmingyi.com -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://listman.redhat.com/archives/libvirt-users/attachments/20121112/1d9dbe17/attachment.htm>
2015 Oct 30
0
Re: Creating network interfaces with specific name in LXC
...libvirt.org/formatdomain.html for all the things you can configure in <interface/> and what does each option mean. >This doesn't seem to work; it always ends up creating interface with name >as "eth0". > >I found some examples here: >http://libvirt.org/guide/html/Application_Development_Guide-Network_Interfaces-XML_Format.html > >That uses interface type as "ethernet" and specifies name also, If I do >that, I get back an error while starting the container as "Unsupported >network type ethernet". > >Appreciate your help. > >Regards, >Harish...
2015 Nov 02
0
Re: Creating network interfaces with specific name in LXC
...<interface/> and what does each option >> mean. >> >> This doesn't seem to work; it always ends up creating interface with name >>> as "eth0". >>> >>> I found some examples here: >>> >>> http://libvirt.org/guide/html/Application_Development_Guide-Network_Interfaces-XML_Format.html >>> >>> That uses interface type as "ethernet" and specifies name also, If I do >>> that, I get back an error while starting the container as "Unsupported >>> network type ethernet". >>> >>&gt...
2012 May 05
1
listing active and defined vs inactive and defined domains
...get active domains using: def s_activedomains(conn): #get active domain ids numofdomains=libvirt.virConnect.numOfDomains(conn) activedomains=libvirt.virConnect.listDomainsID(conn) return activedomains i am stuck on how to get inactive domains the example listed here?http://libvirt.org/guide/html/Application_Development_Guide-Guest_Domains-Listing.html under example 4.4 and example 4.5 seems to be outdated looking at?/usr/lib64/python2.6/site-packages/libvirt.py, line 2337 says that "Note that this won't work for inactive domains which have an ID of -1" i think example 4.5 is wrong because if inactive dom...
2012 May 06
0
storage-pools and volumes
hi, i am trying to create a domain using libvirt 0.9.4 python api and i can't find any information on how to use the libvirt python api with linux logical volumes http://libvirt.org/guide/html-single/#Application_Development_Guide-Device_Config-Disks is TBD i figured out that i need to use defineXML to create a domain, however for the disk part in the xml, i am not sure if i need to create the LVM first, or just specify the LVM path and libvirt will create the lvm for me and stick the domain on the lvm ? ? <disk type=...
2014 Jun 18
0
Re: ERROR: Domain not found: no domain with matching name 'ubuntu'
...:/usr/local/bin:/usr/bin:/usr/sbin:/sbin:/bin /usr/local/bin/qemu-system-x86_64 -help $ echo $? Does that make a difference? Which OS are you using? Do you have AppArmor or SELinux enabled? Another thing you could do is start libvirtd with debug logging enabled, see http://libvirt.org/guide/html/Application_Development_Guide-Connections-Debug.html and post the log. Claudio
2014 Jun 15
2
Re: ERROR: Domain not found: no domain with matching name 'ubuntu'
I tried running qemu-system-x86_64 -help" command manually. But it seems that it work normally. Here is the output. Kindly guide me. spanhal1@seclab2:/usr/bin$ qemu-system-x86_64 -help QEMU emulator version 1.2.0 (qemu-kvm-1.2.0), Copyright (c) 2003-2008 Fabrice Bellard usage: qemu-system-x86_64 [options] [disk_image] 'disk_image' is a raw hard disk image for IDE hard disk 0
2012 Oct 13
0
[PATCH] New APIs: Model libvirt authentication events through the API.
...nch> if the +libvirt attach-method has been selected. Libvirt connections may +require authentication, for example if they need to access a remote +server or to access root services from non-root. Libvirt +authentication happens via a callback mechanism, see +L<http://libvirt.org/guide/html/Application_Development_Guide-Connections.html> + +You may provide libvirt authentication data by registering a callback +for events of type C<GUESTFS_EVENT_LIBVIRT_AUTH>. + +If no such event is registered, then libguestfs uses a libvirt +function that provides command-line prompts +(C<virConnectAuthPtrDefault>)...