Hi,
You can use Linux commands to transfer 200GB data from one server to another.
For that you can use either rsync command or scp command.
- scp command: scp -P port -r root@destinationserverIP:/home/path /home/destinationpath
- rsync command : rsync A host:B
These both the commands used to transfer data but rsync command is better because it uses delta transfer algorithm which makes transfer more faster.