Maybe a dumb question. But is this just a matter of copying over? I have 6 hdds I’ve accumulated and want all the data from them on one big drive now. They are all ntfs as they are from windows, but I am going to boot from my mint drive to move the files, just so windows isnt running or accessing anything on the drives while I move the data. I’m transitioning to full linux, but I want to consolidate these drives first. I dont want to clone drives, so no dd here, just copying files from 6 different drives onto 1.
You might want to use rsync rather than a GUI file browser. I don’t know if it’ll be faster, but it’ll be more reliable, especially if you want to stop and restart it, or just plain restart it if it fails for some reason.
Yeah, it’ll be faster if you need to restart partway through, since
rsync
won’t overwrite already-copied data. But outside of that,cp
should be fine.If retaining original file modification times is desired, then the
-a
flag, to eithercp
orrsync
, is valuable, since otherwise, you’ll update the file modification times to the time of the copy.