mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-02-25 18:55:27 -06:00
Desktop tool for managing virtual machines via libvirt
The loop in StorageVolume._progress_thread that updates the cloning progress bar has a call to sleep in the beginning of the loop which causes issues with the progress bar. An example output (shorten to use less columns) with the problem: [laggarcia@fedora18 virt-manager]$ ./virt-clone --connect qemu+ssh://root@192.168.122.1/system --original=Fedora18-test --auto-clone root@192.168.122.1's password: Allocating 'Fedora18-test-clone.img' | 20 GB 00:00:56 Clone 'Fedora18-test-clone' created successfully. [laggarcia@fedora18 virt-manager]$ ' 4% [===- ] -300039887.4 B/s | 881 MB --:--:-- ETA As the StorageVolume._progress_thread sleeps for one second when the loop starts, it might occur that, when the cloning procedure finishes, the loop is still awaiting to update the progress bar, which will cause a bad progress bar update. This simple fix solves this issue. |
||
---|---|---|
.tx | ||
data | ||
man | ||
po | ||
tests | ||
ui | ||
virtcli | ||
virtconv | ||
virtinst | ||
virtManager | ||
.gitignore | ||
.mailmap | ||
autobuild.sh | ||
COPYING | ||
HACKING | ||
INSTALL | ||
MANIFEST.in | ||
NEWS | ||
README | ||
setup.py | ||
virt-clone | ||
virt-convert | ||
virt-image | ||
virt-install | ||
virt-manager | ||
virt-manager.spec.in |
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. Pre-requisite software ====================== virt-manager was ported to GTK3 at the beginning of 2013. Older GTK3 or pygobject3 versions likely will not work for running virt-manager. Earliest tested versions of major components: python >= 2.6 gtk3 >= 3.6 libvirt-python >= 0.4.0 pygobject3 >= 3.4 A more detailed dependency list can be found in virt-manager.spec.in. Contact ======= All comments / suggestions / patches should be directed to the virt-tools-list mailing list: http://www.redhat.com/mailman/listinfo/virt-tools-list For IRC we use #virt on OFTC. For bug reporting info, see: http://virt-manager.org/page/BugReporting There are further project details on the website: http://virt-manager.org/ See the HACKING file for info about submitting patches or contributing translations.