Como eu crio uma IMAGEM dd do LVM para fins de recuperação [duplicado]

1

Como faço backup de uma partição LVM para uma imagem para fins de recuperação?

Estou tentando executar o dd em / dev / sda2, mas ele cai depois de cerca de 8 horas, por volta de 380G

 sudo lvmdiskscan
  /dev/centos/swap [       3.89 GiB] 
  /dev/sda1        [     500.00 MiB] 
  /dev/centos/root [      50.00 GiB] 
  /dev/sda2        [     465.27 GiB] LVM physical volume
  /dev/centos/home [     411.38 GiB] 
  /dev/sdb1        [     931.51 GiB] 
  3 disks
  2 partitions
  0 LVM physical volume whole disks
  1 LVM physical volume

De qualquer forma, correr de uma vara pode fazer alguma diferença?

    
por Olav 22.06.2016 / 09:15

1 resposta

1

Parece que foi respondida anteriormente no Serverfault.

link

First of all you should create an LVM that is at least the same size of the original one. Then you can do something like:

local# dd if=/dev/vglocal/lvm-old | ssh remote dd of=/dev/vgremote/lvm-new

And that should do it. If you already have a file with the original lvm on the remote server, then something very similar can be done:

remote# dd if=/path/to/img of=/dev/vgremote/lvm-new

You could also add the option bs to increment the blocksize used by dd, to speed up the process:

# dd if=... of=... bs=131072

    
por 22.06.2016 / 09:22

Tags