0

My windows server has 4tb image files, images are scattered in folders by year(10 years), i want to transfer these images to centos. Is there a tool that can upload multiple(not one by one in queue), and retry upload when fail?

user1434702
  • 103
  • 2
  • 1
    The best way depends, you can copy over the network (by means of exporting a network share to the other server, or plethora of other networking protocols like rsync, ftp, scp etc.) copy the data to a portable drive and connect that to the new server, or remove the hard disks from the existing server and (temporarily) install them in the new – HBruijn Sep 19 '19 at 09:09

2 Answers2

3

Assuming you have network access between both machines, use RSYNC. There is a version for Windows as well.

ETL
  • 6,513
  • 1
  • 28
  • 48
0

You can setup a FTP server (ProFTPd, Pure-FTPd) on your CentOS machine. There are FTP clients for Windows which support auto retry on failure. FTP clients which support auto retry: Flash FXP, Cute FTP of Leech FTP.

Marijn
  • 1