Crear na maquina virtual KVM/QEMU y seleccionar el formato raw, qcow, o qcow2. There are administrative benefits to using file images instead of devices, such as backing up or saving image files on another server, as is the case with migrating over shared storage.
Migrar un sistema fisico a un servidor virtual KVM solo con acceso de red
Solo con acceso SSH:
- ssh al sistema remoto y termine todos los procesos que pueda. Basically everything but the ssh server itself.
- Desde su sistema local, capture una copia de una imagen del disco a su sitema local:
1ssh root@remote.example.com "dd if=/dev/sda bs=1024k" > p2v.img
Espera muchas horas. Depende del tamaño del disco duro y el ancho de banda. - Finalizara con un archivo llamado
p2v.img
. Montelo a una KVM virtual machine como raw disk image yfsck
y encuentra errores.
Si tiene acceso al servidor
- From the remote console, bring the system to single-user mode (
init 1
as root, or reboot with1
added to the boot command line). - Bring up the network manually, e.g. with the appropriate
ifconfig
androute
commands. - P2V it to the remote hypervisor (or a storage server):
1dd if=/dev/sda bs=1024k | ssh root@kvmhost.example.com "cat > /path/to/p2v.img"
- Create a new KVM virtual machine using
p2v.img
as the disk, start it up and make any necessary changes.
- From the remote console, bring the system to single-user mode (
Backup de una maquina virtual KVM
Seguir los siguientes pasos
Listado de las maquina virtuales
1 |
virsh -c qemu:///system list --all |
Sacar backup de la configuracion
1 |
virsh -c qemu:///system dumpxml win2011 > /s3mnt/dms/backup.xml |
Si el clon ya existe de deben seguir los siguientes pasos
1 2 3 |
virsh destroy win2011-clone virsh undefine win2011-clone rm win2011-clone.img |
Parar la maquina y sacar backup
1 2 3 |
virsh suspend win2011 virt-clone --connect qemu:///system --original win2011 --name win2011-clone --file /home/maguilar/win2011-clone.img --check all=off virsh resume win2011 |
En la maquina destino, definir la configuracion
1 |
virsh define win2011.xml |
Copiar el disco duro (img) de la maquina virtual al servidor destino
Iniciar la maquina
1 |
virsh create win2011.xml |
Servidor de Virtualización
Instalar Servidor Ubuntu Server
Primero se debe actualizar el servidor
1 2 |
sudo apt-get update sudo apt-get upgrade |