I bought a new computer and transferred the entire disk to the new environment via SSH.
Just run the dd command, transfer the data via ssh and mount it.
Execute the dd command from the old environment to transfer to the new environment. In my environment, when I ran from the new environment, the data could not be transferred normally. (When I tried hexdump, the order of the data changed. I doubted that it was related to Endian, but what about?)
dd if={device} | ssh {user}@{host} dd of={file}
user
host
device
file
sudo mount -t auto -o loop {file} {mount_point}
file
mount_point
Recommended Posts