I am attempting to clone 68GB FreeBSD 8.0 machine (1.1.1.1) over ssh to a 120GB FreeBSD 12.2 machine (2.2.2.2). Here is my argument:
After some time, the operation halts at only 6% reporting:
I can repeat the operation, each time resulting in a similarly premature end. I can't determine why this would be. Can you guys lend me a hand with this? I don't really have anybody around locally to bounce ideas off of.
Code:
2.2.2.2# ssh root@1.1.1.1 "dd if=/dev/da0 bs=4096 | gzip -1 -" | dd of=image.gz status=progress | pv -s 68G
After some time, the operation halts at only 6% reporting:
Code:
4.37GiB 0:52:12 [1.43MiB/s] [> ] 6%
62914560+0 records in
62914560+0 records out
128849018880 bytes transferred in 3132.538034 secs (41132467 bytes/sec)
9174820+1 records in
9174820+1 records out
4697507868 bytes transferred in 3129.408783 secs (1501085 bytes/sec)
I can repeat the operation, each time resulting in a similarly premature end. I can't determine why this would be. Can you guys lend me a hand with this? I don't really have anybody around locally to bounce ideas off of.