21

I need to transfer an entire linux root filesystem off of a failing hard drive onto another computer with an open, available partition. I've pretty sure this involves tar and ssh, but I can't remember exactly how to do this.

I'm imaging probably using a live cd on the new/target host to run something like this:

ssh user@failingharddrivehost "some tar command | piped into something else"

CHK
  • 607

7 Answers7

36

Use rsync. From the new host, you can use

rsync -avP --numeric-ids --exclude='/dev' --exclude='/proc' --exclude='/sys' root@failedharddrivehost:/ /path/to/destination/

I wouldn't try involving something like tar because it probably won't work when there are broken files.

etagenklo
  • 561
9

Why are you combine with directory excluding? Isn't better idea mount the same device into another directory? modern kernels allows this way. for example, you have mounted

/dev/sda1 as / then do: mkdir /CLEANROOT mount /dev/sda1 /CLEANROOT

after this you have: /dev/sda1 as / /dev/sda1 as /CLEANROOT

This is the same filesystem visible with two places, but /CLEANROOT haven't got additive mounts. Then you can tar or rsync /CLEANROOT without any exclusions instead copying / with exclusions.

Of course you must copy another data partitions when you've got some.

Copying partition is first step for server recovery. another is regenerate boot sectors, otherwise system wont boot from copied disk. Usefull is rescue mode when you boot from install/rescue CD or pendrive.

Znik
  • 376
7

If both computers are on the same (safe) LAN, I recommend a different approach using netcat. This is usually much faster as it doesn't encrypt the data.

root@good_host$ cd good_partition; netcat -l -p 1234 | tar xvpmf -
root@bad_host$ tar -cv -f- --exclude=/proc --exclude=/sys / | netcat good_host.ip 1234

which opens a listening port 1234 on the good machine netcat -l -p 1234 and pipes the incoming data to tar to extract (preserving mtime and permissions). The bad host sends the data to this port, also using tar and netcat. I included some --exclude parameters, as /proc and /sys are virtual filesystems and hence useless on the new host. (especially the file representing your RAM in (/proc/kcore) will add an unnecessary amount of data).

However, you should (also) consider to make a dd dump of the failing drive's partitions:

user@good_host$ cd good_partition; netcat -l -p 1234 > dump_of_bad_partition_1.dd
root@bad_host$ dd if=/dev/sda1 | netcat good_host.ip 1234

where you had to adopt /dev/sda1 to the right device. Do that with other partitions on the failing drive, too.

With that dump you are sure, that you did not miss any important metadata (like ACLs) which tar won't capture.

mpy
  • 28,816
1

Clone a live root file system using tar

Let's say you want to clone a live Ubuntu root file system to an unused partition /dev/sdc5 on the same disk. /dev/sdc5 size must be no less than the data occupied by the root partioned being cloned. Let's assume that an EFI partition is /dev/sdc1.

  • Format the destination partition and use a label to identify it
mkfs.ext4 -L Ubuntu-sdc5 -J size=128 /dev/sdc5

mkdir /tmp/{dstRoot,srcRoot} mount /dev/sdc5 /tmp/dstRoot # destination root mount --bind / /tmp/srcRoot # source root

  • Clone the current root to /dev/sdc5 mounted partition
tar -C /tmp/srcRoot -cf - . | tar -C /tmp/dstRoot -xf -
  • Edit /tmp/dstRoot/etc/fstab to reflect the new label assigned to /dev/sdc5:
LABEL=Ubuntu-sdc5 / ext4 errors=remount-ro 0 1
  • Mount the necessary folders to run grub-mkconfig on the clone
for i in dev dev/pts proc sys run; do mount -B /$i /tmp/dstRoot/$i; done
  • Rebuild grub menu on the clone
chroot /tmp/dstRoot
update-grub
exit # exit chroot
  • Unmount the previously mounted folders and cleanup tmp folders
for i in run sys proc dev/pts dev; do umount /tmp/dstRoot/$i; done
umount /tmp/dstRoot/boot/efi
umount /tmp/dstRoot
umount /tmp/srcRoot
rmdir /tmp/{dstRoot,srcRoot}
  • Rebuild grub menu on the source root file system to include the cloned partition
update-grub
  • Reboot into the EFI setup menu and add a new boot entry to boot options
systemctl reboot --firmware-setup

NOTE: The EFI boot software should automatically detect a new boot entry, but if it doesn't, boot to the original root and try to add it manually:

efibootmgr -c -d /dev/sdc -p 1 -L "Ubuntu2" -l "\EFI\ubuntu2\shimx64.efi"
  • Reboot again into the EFI setup menu and add a new boot entry to boot options
1

Do you have physical access to the failing host?

If you do then boot from a live CD. Then use:

  • dump (dump/restores whole filesystems including its permissions).
  • Tar with /dev excluded. You can combine this with outputting to std_out and piping that though netcat
    The exclude syntax is: tar --exclude='/dev'.
  • or rsync with the same excludes. E.g.
    rsync -zvr --exclude /dev/ / destination_computer_name_or_ip
  • or use dd like this:
    nc -l 4242 | gunzip | cat > my_full_disk_backup_of_PC_named_foo
    dd if=/dev/sda of=- bs=1M | gzip | nc -p 4242 name_of_the_destination

If you can not boot from a live CD then some most of the above solutions will stay the same, but:

  1. Some files may be in use/locked.
  2. Make sure to exclude not just /dev/ but also /proc/.
    E.g. tar --exclude='/dev' --exclude='/proc'
Hennes
  • 65,804
  • 7
  • 115
  • 169
1

Here is a description of how to copy files using tar and ssh. Basically, you would run one of the following, depending on whether you want to copy local -> remote or remote -> local:

tar cf - files... | ssh remotehost -c 'cd /destination && tar xvf -'

ssh remotehost -c 'cd /destination && tar cf - files' | tar xvf -
Kenster
  • 8,620
0

you should consider using rsync

the follwoing command assumes 2 things:

  1. you are on the system with failing hard drive
  2. new partition has a minimal linux installation with ssh enabled.

rsync / new_partition:/wherever/you/want/

Note: the trailing / is important, otherwise your files will end up in one directory level above

MelBurslan
  • 1,394