Desktop tool for managing virtual machines via libvirt
Go to file
2007-03-09 17:16:28 -05:00
docs Added notes on release process 2006-11-09 13:29:39 -05:00
help Add the details section to the help file. Lots more screen shots. 2007-03-09 17:12:29 -05:00
m4 Hooked up David Malcolm's 'sparkline' widget for CPU display 2006-06-26 17:17:45 -04:00
pixmaps various UI tweaks for the graphical console to match the HIG as well as 2006-09-01 10:49:46 -04:00
po Refresh po/pot files 2007-01-22 18:22:55 -05:00
src merge heads 2007-03-09 17:16:28 -05:00
.hgignore Hooked up David Malcolm's 'sparkline' widget for CPU display 2006-06-26 17:17:45 -04:00
AUTHORS Add sensible options to right-click menu in manager window. Thanks to Mark Cave-Ayland <mark.cave-ayland-at-ilande-dot-co-dot-uk>. 2007-03-08 14:39:22 -05:00
autobuild.sh Fixed various packaging bugs 2006-06-16 17:09:28 -04:00
autogen.sh Added autotools support & RPM build 2006-03-29 06:40:14 -05:00
ChangeLog Updated for release 0.3.1 2007-02-20 15:53:44 -05:00
configure.ac Move help so far to the proper directory 2007-03-07 15:22:57 -05:00
COPYING Added autotools support & RPM build 2006-03-29 06:40:14 -05:00
COPYING-DOCS Initial cut at help infrastructure. Help builds and displays, but says nothing. Now we can start filling in content. 2007-03-02 16:24:35 -05:00
INSTALL Added autotools support & RPM build 2006-03-29 06:40:14 -05:00
Makefile.am Initial cut at help infrastructure. Help builds and displays, but says nothing. Now we can start filling in content. 2007-03-02 16:24:35 -05:00
NEWS Updated for release 0.3.1 2007-02-20 15:53:44 -05:00
omf.make Initial cut at help infrastructure. Help builds and displays, but says nothing. Now we can start filling in content. 2007-03-02 16:24:35 -05:00
README Updated for release 0.3.1 2007-02-20 15:53:44 -05:00
TODO Release 0.2.2 2006-09-15 17:08:34 -04:00
virt-manager.spec.in merge heads 2007-03-02 16:25:13 -05:00
xmldocs.make Hooked up the half-finished help document to a new help menu item. More fun to come. 2007-03-08 14:07:00 -05:00

 Virtual Machine Manager
 =======================

This application provides a graphical tool for managing virtual machines
via the libvirt library.

The front end of the application uses the PyGTK / Glade libraries for
all user interaction components. The back end uses libvirt for managing
Xen, QEMU & KVM virtual machines. The UI is primarily tested with Xen
and QEMU, but is intended to be portable to any virtualization backend 
libvirt supports. So when libvirt is ported to UML / VmWare / etc the 
UI should not require any significant changes to deal with these drivers.

Terminology
-----------

In prose this app should be referred to as 'Virtual Machine Manager'.
For source / RPM packaging, & the command name, it is called by the
shortened form 'virt-manager'

Pre-requisite software
----------------------

Where versions are noted below these are the versions tested to definitely
work. For some of them you may be able to run with earlier releases, so
please report any success to the mailing lists 

 python  >= 2.4
 pygtk2 >= 1.99.12-6
 gnome-python2-gconf >= 1.99.11-7
 libvirt-python >= 0.2.0
 dbus-python >= 0.61
 gnome-keyring >= 0.4.9
 gnome-python-desktop >= 2.15.4
 libxml2-python >= 2.6.23
 vte >= 0.12.2
 python-virtinst >= 0.101.0

The latter is available from

http://hg.et.redhat.com/virt/applications/virtinst--devel

Contact
-------

All comments / suggestions / patches should be directed to the fedora-xen
mailing list:

  http://www.redhat.com/mailman/listinfo/fedora-xen

There are futher project details on the website:

  http://virt-manager.et.redhat.com/

Submitting patches
------------------

Patches should be submitted either as unified diffs:

   tar zxvf virt-manager-X.Y.Z.tar.gz
   cp -a virt-manager-X.Y.Z virt-manager-X.Y.Z-myfeature
   cd virt-manager-X.Y.Z-myfeature
   ... make some changes .. 
   cd ..
   diff -ruN virt-manager-X.Y.Z virt-manager-X.Y.Z-myfeature \
      > myfeature.patch

Alternatively use Mercurial and submit a changeset bundle against
the main source repository:

   hg clone  http://hg.et.redhat.com/virt/applications/virt-manager--devel
   cd virt-manager--devel
   ... make some changes & commit them locally...
   hg bundle myfeature.hg http://hg.et.redhat.com/virt/applications/virt-manager--devel

Then mail the 'myfeature.hg' file to fedora-xen list. This approach is
preferred to plain patches, because the Mercurial bundle preserves all
your local commit messages & history.

Related software
----------------

Links which are relevant:

  http://libvirt.org
  http://xensource.com/xen/
  http://pygtk.org/
  http://gtk.org/

Copyright /  License
--------------------

Unless otherwise noted, all the code for the Virtual Machine Manager
is covered under the GPL, and Copyright (C) Red Hat.

The exception to this is the backend RFB protocol code for the embedded
VNC viewer widget. This code is taken from the excellant pyvnc2swf 
application:

  http://www.unixuser.org/~euske/vnc2swf/pyvnc2swf.html

It is also covered under the GPL, but refer to the individual source
code files under 'src/vncViewer' for details of all the copyright holders
and original authors.

-- End of broadcast!