How to transfer files between two computers in the same LAN?

1

I have to copy the whole disk to another computer in the same LAN (they're connected via wifi, however I could connect them with an ethernet cable).

What's the best way to transfer files? I need to get this conditions satisfied:

  • transfer between Windows/Windows or Ubuntu/Ubuntu computers
  • verify every file with hash checksum
  • possibility to manage files over 16GB
  • velocity rate at around 10MBps or more would be great

Thanks a lot! and sorry if I used any bad expression

Sakawa

Posted 2014-04-16T10:06:56.343

Reputation: 13

Is this a one-time event? – Brian Adkins – 2014-04-16T10:21:17.607

Yes, I have to do this only in very rare occasions. – Sakawa – 2014-04-16T20:03:20.767

Answers

0

I think rsync fits all the requirements. It checks file integrity with md5 and if you are using an unencrypted connection you would easily get 10MBps (you'd probably get 50 MBps or so) over Gigabit Ethernet. The Windows port of rsync is called cwRsync.

mtak

Posted 2014-04-16T10:06:56.343

Reputation: 11 805