What's new

downtownarcade

Beginner
Joined
Aug 25, 2021
Messages
6
Reaction score
1
Location
Los Angeles
I have failing hard drive that I need to copy before it dies. How can I copy this drive to a SSD?
 
Ya, I get hooking it to a Windows system will mess up the drive. It needs to be done in Linux, just don't know how
 
dd in terminal.

You can find instructions online. Remember to add status=progress to your command. I always forget to do that.
 
You can clone the drive and the original drive will still work.
 
You can clone the drive, but the clone won't work on the Namco N2. The game image is tied to the harddrive. The clone drive would need to be the exact same model with a copied serial.

I'm just saying dd is a safe way to clone drives, nothing else.
 
Red_Button.png
 
So I'm going with dd.
dd if=/dev/sdb of=/dev/sdc status=progress

Using this command with the input and output drives connected to their corresponding sdb and sdc
 
Back
Top