search for: listdoms

Displaying 14 results from an estimated 14 matches for "listdoms".

2004 Jan 18
3
xentop, anyone?
Has anyone started work on a ''top''-like tool that would show the current CPU and memory usage of domains? I''m thinking of writing something really simple in python, starting from listdoms.py, but want to make sure that someone else isn''t already there. Steve -- Stephen G. Traugott (KG6HDQ) UNIX/Linux Infrastructure Architect, TerraLuna LLC stevegt@TerraLuna.Org http://www.stevegt.com -- http://Infrastructures.Org ------------------------------------------------------...
2019 Feb 15
2
HELP!
...uct { Conn *libvirt.Connect } func (d *DomService) Connect() error { var err error d.Conn, err = libvirt.NewConnect("qemu:///system") if err != nil { fmt.Println(err) } defer d.Conn.Close() return nil } func (d *DomService) ListDoms() error { doms, err := d.Conn.ListAllDomains(libvirt.CONNECT_LIST_DOMAINS_ACTIVE) if err != nil { fmt.Println(err) } //fmt.Println(doms) fmt.Printf("%d running domains:\n", len(doms)) for _, dom := range doms { name,...
2009 Sep 23
2
[PATCH node] Introduces the virtual network administration functions.
...in @@ -30,5 +30,10 @@ setup(name = "nodeadmin", 'destroydom = nodeadmin.destroydomain:DestroyDomain', 'undefinedom = nodeadmin.undefinedomain:UndefineDomain', 'createuser = nodeadmin.createuser:CreateUser', - 'listdoms = nodeadmin.listdomains:ListDomains'] + 'listdoms = nodeadmin.listdomains:ListDomains', + 'definenet = nodeadmin.definenet:DefineNetwork', + 'createnet = nodeadmin.createnetwork:CreateNetwork', + 'destroynet = no...
2006 May 16
7
Unable to bring up Mini-OS on x86_64
I am getting the following error when I try to bring up Mini-OS on x86_64 Xen (unstable: 9994). It is dying in xc_linux_build() causing xend to fault and restart. Any clue why this happening? Has something changed in the builder that Mini-OS needs to be aware of? PS: I tried reverting changeset 9993 (Allow linking of mini-os with application-specific object code), but still got the same error
2009 Oct 12
1
First draft: node storage admin
This patch provides the ability to create a "dir" type storage pool, and to add and remove volumes for existing pools.
2009 Oct 14
0
[PATCH node] Provides a new storage administration system to the managed node.
...thon_sitelib}/nodeadmin @@ -368,18 +380,25 @@ fi %{_sbindir}/ovirt-awake %{_initrddir}/ovirt-functions %defattr(-,root,root,0644) -%{_bindir}/nodeadmin -%{_bindir}/definedom +%{_bindir}/addpool +%{_bindir}/addvolume %{_bindir}/createdom -%{_bindir}/destroydom -%{_bindir}/undefinedom -%{_bindir}/listdoms -%{_bindir}/definenet %{_bindir}/createnet +%{_bindir}/createuser +%{_bindir}/definedom +%{_bindir}/definenet +%{_bindir}/destroydom %{_bindir}/destroynet -%{_bindir}/undefinenet +%{_bindir}/listdoms %{_bindir}/listnets -%{_bindir}/createuser +%{_bindir}/listpools +%{_bindir}/nodeadmin +%{_bindi...
2009 Oct 21
1
Storage administration and refactoring of domain admin
This pair of patches provide a new storage admin interface. Then, on top of that, it refactors the domain administration pieces to now properly use storage pools and volumes when defining a new VM.
2009 Oct 21
1
[PATCH node] Renamed files and menu items for node administration:
...'startvm = nodeadmin.startdomain:StartDomain', + 'stopvm = nodeadmin.stopdomain:StopDomain', + 'rmvm = nodeadmin.removedomain:RemoveDomain', 'createuser = nodeadmin.createuser:CreateUser', - 'listdoms = nodeadmin.listdomains:ListDomains', + 'listvms = nodeadmin.listdomains:ListDomains', 'definenet = nodeadmin.definenet:DefineNetwork', 'createnet = nodeadmin.createnetwork:CreateNetwork', 'destroynet = no...
2009 Aug 31
1
Fixed patch...
This version of the patch includes feedback from jboggs at redhat.com, including fixes to the BuildRequires and Requires in the spec file.
2009 Sep 11
1
Text-based node administration tool
This patch obsoletes any previous ones. This is an upstream candidate, so I'm looking for feedback so we can push this and start using it.
2009 Sep 14
1
Bugfixes...
This version fixes a few bugs found by jboggs. It also includes some logging facilities that need to be fleshed out more.
2009 Sep 16
1
Final push candidate for nodeadmin tool...
This patch is ready for pushing upstream.
2009 Sep 16
1
Replacement that includes utils.py
The previous patch was missing this file. Resending.
2009 Jul 31
2
RFC: This patch is not being submitted for ACK...
...just looking for some feedback on the direction I'm going. The code won't get all the way to the define stage since I'm in the middle of retrofitting it to use virtinst instead of a home spun node definition.