Here is my situation:
- Two dedicated servers in the same datacenter with gigabit ethernet between them.
- Both dedicated servers booted into a rescue environment based on Debian Squeeze with extra tools and utilities added. Also plenty of tmp space (32GB of RAM on both boxes) for downloading software, installing packages, and/or compiling as needed.
- Both dedicated servers have approximately 3TB of usable space.
- The "source" server has 4 x 1.5TB disks in Hardware RAID-10 with an Adaptec 4 port controller.
- The "destination" server has 2 x 3TB disks in Hardware RAID-1 with an Adaptec 2 port controller -- same generation as the other, but different number of ports.
- The number of usable blocks on
/dev/sdadiffers by less than 10 MB, but the destination server's array is for some reason a few megs smaller. - Both RAID arrays are configured to use the entire disk surface of all constituent disks to create one, single RAID volume.
- The operating system boots in MBR mode; no UEFI booting is used.
What I want to do:
- Copy, at the block layer, the entire OS image (this only consists of GRUB2 bootloader in the GPT partition table, /boot partition, and / partition) from the "source" server to the "destination" server.
- If possible, the copy should take place "live": this means I don't have enough space to store a proper file of the disk image on the destination side, unless I'm unpacking the disk image onto the hard disk as the copy is taking place. The gigabit ethernet connection between the servers is reliable enough that I'm comfortable with this, and I will of course run
fsckon both ends (source and destination) to verify the filesystem is OK before and after the transfer. - If possible, do not transfer blocks over the network, which are not used by the constituent filesystems in each partition (all partitions are formatted as ext4). This is because more than 50% of the "source" disk is free space in the
/partition. - Adjust the size of the
/partition so that when it is copied, it is resized to fit within the just barely smaller size of the destination disk. - Once the copy is successful, mount each volume and fix up references to static IPs to reflect the IPs of the new server. (Can do this just fine without any further help)
My questions:
- Should I first calculate the difference (in bytes) between the size of
/dev/sdaon each server, and then usee2resizeto non-destructively reduce the size of the/partition on the source side so that it will fit into the space of the destination side? - Should I run
ddon the raw block device,/dev/sdafrom the source to the destination (overssh), or should I create an equivalent partition layout on the destination and runddon each partition? Note that handling a partition at a time leaves me the problem of the bootloader, but if I don't do it a partition at a time, thenddneeds to know to stop transferring data once it has written as many bytes as the destination can hold (which hopefully will "close out" the very end of the/partition on the last block, which is logically "to the right of" all other partitions in the partition layout of the source).
A few misc. specifics:
- The host OS on the source box is Ubuntu Server 12.04 running several OpenVZ guests
- Since both boxes are booted into rescue, direct disk access is possible without expecting any change to the underlying data by the running operating system.