Add the following to the kernel line in /etc/grub.conf and reboot:
console=tty0 console=ttyS0
When my life of punk-rock and drunken good times failed to pan out financially I turned to a life of tech support, this is my autobiography in progress
console=tty0 console=ttyS0
qemu-img convert -O qcow2 /dev/vg_name/lv_name/ /var/lib/libvirt/images/image_name.qcow2If you want the image compressed add '-c' right after the word convert.
virsh edit image_namemodify the disk stanza, adding a type to the driver line; on the source line change 'dev' to 'file' and modify the path:
driver name='qemu' type='qcow2' source file='/var/lib/libvirt/images/image_name.qcow2'
qemu-img create -b original_image.qcow2 -f qcow2 clone_image01.qcow2 qemu-img create -b original_image.qcow2 -f qcow2 clone_image02.qcow2
qemu-img snapshot -c snapshot_name vm_image_name.qcow2