We currently use a Linux based SAN (inherited from previous IT director) and want to migrate to a traditional Windows file server. We have a small amount (<600GB) of data stored and shared and we do not anticipate this growing more than 10-15% in the near future.<\/p>\n
We have a server (hyper-V VM) ready to accept the data but I wanted to ask if anyone has any suggestions for migration apps, we will also need to keep the old and new shares synced for a while as we have remote users who do not come into an office very often so there will be people still using the old shared drives for a while.<\/p>\n
the current shared drives are all SMB (no CIFS) and the new file server is a Server 2016 Standard VM. Our AD setup is a single domain currently running at 2012 R2 functional level which cannot be upgraded to 2016 until a key system is upgraded by the vendor, the system does not support the expanded 2016 schema currently<\/p>","upvoteCount":6,"answerCount":9,"datePublished":"2020-09-23T15:04:02.000Z","author":{"@type":"Person","name":"tekmonkie","url":"https://community.spiceworks.com/u/tekmonkie"},"suggestedAnswer":[{"@type":"Answer","text":"
We currently use a Linux based SAN (inherited from previous IT director) and want to migrate to a traditional Windows file server. We have a small amount (<600GB) of data stored and shared and we do not anticipate this growing more than 10-15% in the near future.<\/p>\n
We have a server (hyper-V VM) ready to accept the data but I wanted to ask if anyone has any suggestions for migration apps, we will also need to keep the old and new shares synced for a while as we have remote users who do not come into an office very often so there will be people still using the old shared drives for a while.<\/p>\n
the current shared drives are all SMB (no CIFS) and the new file server is a Server 2016 Standard VM. Our AD setup is a single domain currently running at 2012 R2 functional level which cannot be upgraded to 2016 until a key system is upgraded by the vendor, the system does not support the expanded 2016 schema currently<\/p>","upvoteCount":6,"datePublished":"2020-09-23T15:04:02.000Z","url":"https://community.spiceworks.com/t/migrate-from-linux-based-nas-to-windows-file-server/776614/1","author":{"@type":"Person","name":"tekmonkie","url":"https://community.spiceworks.com/u/tekmonkie"}},{"@type":"Answer","text":"
I just migrated 1.64 TB and used robocopy to move data from an older 2008 R2 machine to a new 2016 server. Initial file copy time was around 8.5 hours and the final pass took about 35 minutes so I’d call it a workable solution (I do have 10GB connections between these machines so YMMV). Make sure you use copyall and copysec (copysec may be redundant but it didn’t seem to harm anything) and then check your ACL’s and files to make sure you aren’t wasting any time. Its OK to cancel it after it starts, it picks back up fast. Very Fast, which is why I don’t recommend a copy and paste.<\/p>\n
/COPYALL and /COPYSEC were used the first time around and then my final pass script was:<\/p>\n
robocopy \\sourcecomputer\\E$ E:\\ /XO /E /J /R:5 /W:5 /NP /V /ZB /MT:120 /LOG:C:\\Support\\E-TransferLog.log<\/p>\n
/XO: Exclude Older
\n/E: copy subdirectories, including empty folders
\n/J: Unbuffered IO. You aren’t going to copy these again soon so buffering is pointless.
\n/R: Retry 5 times (default 1 million so you need this)
\n/W: Wait 5 seconds between tries (default 30 seconds)
\n/NP: No percent progress display (helps with log files or they look messed up and it takes CPU)
\n/V: Verbose output, shows skipped files
\n/ZB: use restartable mode; if access denied use Backup mode.
\n/MT: Multi Threaded. Default thread count is 8, it really screamed when I got up in the higher numbers. Uses more CPU obviously, helps with lots of small files.
\n/LOG: Outputs to log. 1.64 TB worth of files generated a 2GB log file which wasn’t viewable in the end but the other things I moved were.<\/p>\n
If you want to keep it in sync, you will want to use /MIR but be careful because it gets deleted from one side it will get deleted from the other. I would probably avoid /MIR until you are 100% sure it’s doing what you want it to do and that you understand it.<\/p>","upvoteCount":2,"datePublished":"2020-09-23T15:40:03.000Z","url":"https://community.spiceworks.com/t/migrate-from-linux-based-nas-to-windows-file-server/776614/2","author":{"@type":"Person","name":"dennis-aston","url":"https://community.spiceworks.com/u/dennis-aston"}},{"@type":"Answer","text":"
So does this retain the permissions? Last time I used robocopy on data stored on a non windows SAN it lost all permissions. I need to have this retain what is already set<\/p>","upvoteCount":0,"datePublished":"2020-09-23T15:58:30.000Z","url":"https://community.spiceworks.com/t/migrate-from-linux-based-nas-to-windows-file-server/776614/3","author":{"@type":"Person","name":"tekmonkie","url":"https://community.spiceworks.com/u/tekmonkie"}},{"@type":"Answer","text":"
I don’t know of any way you are going to keep the permissions.<\/p>\n
Keeping two shares “synced” can be a logistical nightmare. I’d just disable the old share and address those out of office when they return.<\/p>","upvoteCount":0,"datePublished":"2020-09-23T16:04:46.000Z","url":"https://community.spiceworks.com/t/migrate-from-linux-based-nas-to-windows-file-server/776614/4","author":{"@type":"Person","name":"da-schmoo","url":"https://community.spiceworks.com/u/da-schmoo"}},{"@type":"Answer","text":"
I know there is a way to retain permissions, my previous employer migrated over 60TB of data from an old SAN to a new one, I don’t know what was used but trying to rebuild ACLs for that much data would still be going on now, 4 years later.<\/p>","upvoteCount":0,"datePublished":"2020-09-23T16:07:35.000Z","url":"https://community.spiceworks.com/t/migrate-from-linux-based-nas-to-windows-file-server/776614/5","author":{"@type":"Person","name":"tekmonkie","url":"https://community.spiceworks.com/u/tekmonkie"}},{"@type":"Answer","text":"