I have an old forgotten Windows laptop. It no longer boots from the internal hard drive. I successfully created a live Manjaro USB Drive which boots successfully.
There appears to be some sort of data corruption or bit-rot as some of the partitions appear to not be there.
I want to create a copy of the hard drive so I can attempt some data recovery. I have a drive in my PC that is plenty large enough to store any copies I make.
I have no way to transfer a copy physically (an external drive). So I assume the only other way would be though my local network (perhaps a local file share?).
After some searching, I ran across this question, which might be the answer I am looking for. I am unsure if this world work in my situation though.
Obviously I don't want to overwrite the laptop's drive, and the Manjaro USB (or any other USB Drive I have) doesn't have enough space to hold a copy of the laptop's drive.
With all of these limitations, is it possible to create a copy of my laptop's hard drive on my PC? If so, what are some ways I can do it?
dd if=/dev/sda | gzip -1 - | ssh user@pc_address dd of=image.gz
However, the image can can hard to use (you would have to transfer it on an other drive).
It would be better to try mounting readonly your file system and see if is Possible. Then a
– Frédéric Loyer Mar 26 '23 at 21:03tar
export will be easier to handle, but may fail because of the data corruption.