Desktop tool for managing virtual machines via libvirt
Go to file
Lin Ma 2d38e22943 cli: Add auto complete support about sub options
With this patchset, the sub options completion is available. ex:

$ virt-install --disk <TAB><TAB>
...
bus=    cache=      format=     path=   serial=     size=
...

$ virt-install --disk path=test.qcow2,cache=none,<TAB><TAB>
...
bus=    format=     serial=     size=
...

$ virt-install --disk bu<TAB><TAB>
Then the sub option 'bus' will be auto completed with a '='
$ virt-install --disk bus=

Signed-off-by: Lin Ma <lma@suse.com>
2018-12-18 11:20:35 -05:00
data Chagne most URIs to use https:// instead of http:// 2018-04-30 13:35:39 -04:00
man virt-xml: Accept --os-variant option 2018-11-13 12:08:46 +01:00
po Prep for release 2.0.0 2018-10-15 08:34:18 -04:00
tests cli: Fix --security baselabel=X 2018-12-17 09:06:03 -05:00
ui preferences: Fix some mnemonics (bz 1630217) 2018-10-13 17:05:21 -04:00
virtcli Prep for release 2.0.0 2018-10-15 08:34:18 -04:00
virtconv capabilities: Drop lookup_virtinst_guest 2018-09-06 20:28:05 -04:00
virtinst cli: Add auto complete support about sub options 2018-12-18 11:20:35 -05:00
virtManager virt-manager: Fix misspelling caught by codespell 2018-12-10 10:43:55 +08:00
.gitignore tests: test_urls: Look for manual.ini in ~/.config/virt-manager 2018-04-03 15:29:03 -04:00
.gitpublish git: add a git publish configuration file 2018-04-30 13:35:32 -04:00
.mailmap Add .mailmap 2013-04-03 18:13:25 -04:00
COPYING Refresh GPL text with latest FSF address & fix spec file license tag 2007-11-20 11:12:20 -05:00
HACKING.md setup: Integrate codespell 2018-06-05 14:27:29 -04:00
INSTALL.md cli: Add the generic completer function and validator function 2018-12-18 11:20:35 -05:00
MANIFEST.in tests: test_urls: Look for manual.ini in ~/.config/virt-manager 2018-04-03 15:29:03 -04:00
NEWS.md Prep for release 2.0.0 2018-10-15 08:34:18 -04:00
README.md Chagne most URIs to use https:// instead of http:// 2018-04-30 13:35:39 -04:00
setup.py pylint: Don't exclude progress.py 2018-11-12 08:34:55 -05:00
virt-clone virt-clone: Add auto complete support for the general options 2018-12-18 11:20:35 -05:00
virt-convert virt-convert: Add auto complete support for the general options 2018-12-18 11:20:35 -05:00
virt-install virt-install: Add auto complete support for the general options 2018-12-18 11:20:35 -05:00
virt-manager module_trace: Support --trace_libvirt=all|mainloop 2018-10-10 17:20:25 -04:00
virt-manager.spec.in https://fedoraproject.org/wiki/Changes/No_more_automagic_Python_bytecompilation_phase_2 2018-11-15 13:28:45 -05:00
virt-xml virt-xml: Add auto complete support for the general options 2018-12-18 11:20:35 -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 GTK / Glade libraries for all user interaction components. The back end uses libvirt for managing Qemu/KVM and Xen virtual machines, as well as LXC containers. The UI is primarily tested with KVM, but is intended to be reasonably portable to any virtualization backend libvirt supports.

Several command line tools are also provided:

  • virt-install: Create new libvirt virtual machines
  • virt-clone: Duplicate existing libvirt virtual machines
  • virt-xml: Edit existing libvirt virtual machines/manipulate libvirt XML
  • virt-convert: Convert VMX or OVF configs to libvirt virtual machines

For dependency info and installation instructions, see the INSTALL.md file.

Contact

  • All comments / suggestions / patches should be directed to the virt-tools-list mailing list.
  • For IRC we use #virt on OFTC.
  • For bug reporting info, see BugReporting.
  • There are further project details on the virt-manager website.
  • See the HACKING.md file for info about submitting patches or contributing translations.