1

I have tried TeamViewer, AnyDesk, NitroShare and by torrents to transfer my files to a new server. TeamViewer did not connect, NitroShare is for local computers and by torrents does not work because no seeds. I have tried with trackers but also did not work. Since I am desperate because I have 2 hours to migrate the files, I came for help here, if you have any method to transfer

I have also searched for similar questions but all are about local computers I use Ubuntu 16.04

And is a 70GiB folder

2 Answers2

1

Provided you have ssh access to both machines, try rsync.

scp will probably only work when one of the two machines is local. You could ssh into Server1 and

scp -r /your/source/* username@server2:/your/destination/

(or vice versa).

Andyc
  • 228
0

Have you tried the following?

scp -r username@server1:/path_to_source_directory/* username@server2:/ path_to_the_destination_directory/
mre
  • 1