Simple daft question

nc_killie

POTY (Joint) 2016
Suspended / Banned
Messages
1,816
Name
John
Edit My Images
Yes
What is the ‘best’ way to copy an external hard drive to another? Is it highlight the drive and right click, copy or…….
TIA
 
One I've used in the past is Macrium Reflect.
I agree.

Macrium is pretty good for Windows work, Carbon Copy Cloner is good for Macs. If you're happy on the command line, rsync will work on any Unix/Linux machine (including the versions on both Apple and later versions of Windows).
 
DOS
xcopy {source drive}:\ {target drive}:\ /s /e /h /i /c /y

Linux
Assuming Source = /dev/sda and target = /dev/sdb (you'll have to work those out for yourself
(as root)
dd if=/dev/sda of=/dev/sdb

But obviously use these commands at your own risk if you've never used them before.
Read the help/man files.
 
Last edited:
Back
Top