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.
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.