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 (